WarpPI/desktop/src/main/java/ar/com/hjg/pngj/chunks/ChunkPredicate.java

15 lines
276 B
Java
Raw Normal View History

package ar.com.hjg.pngj.chunks;
/**
* Decides if another chunk "matches", according to some criterion
*/
public interface ChunkPredicate {
2018-08-28 02:39:41 +02:00
/**
* The other chunk matches with this one
*
* @param chunk
* @return true if match
*/
boolean match(PngChunk chunk);
}