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

15 lines
276 B
Java

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