WarpPI/src/teavm-specific/java/ar/com/hjg/pngj/chunks/ChunkPredicate.java
2018-09-02 12:09:59 +02:00

15 lines
283 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);
}