Uses of Class
org.apache.commons.imaging.formats.png.ChunkType
-
Packages that use ChunkType Package Description org.apache.commons.imaging.formats.png The PNG (Portable Network Graphics) image format. -
-
Uses of ChunkType in org.apache.commons.imaging.formats.png
Fields in org.apache.commons.imaging.formats.png declared as ChunkType Modifier and Type Field Description private static ChunkType[]ChunkType. typesMethods in org.apache.commons.imaging.formats.png that return ChunkType Modifier and Type Method Description (package private) static ChunkTypeChunkType. findType(int chunkType)static ChunkTypeChunkType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ChunkType[]ChunkType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.imaging.formats.png with parameters of type ChunkType Modifier and Type Method Description private java.util.List<PngChunk>PngImageParser. filterChunks(java.util.List<PngChunk> chunks, ChunkType type)booleanPngImageParser. hasChunkType(ByteSource byteSource, ChunkType chunkType)private booleanPngImageParser. keepChunk(int chunkType, ChunkType[] chunkTypes)private java.util.List<PngChunk>PngImageParser. readChunks(java.io.InputStream is, ChunkType[] chunkTypes, boolean returnAfterFirst)private java.util.List<PngChunk>PngImageParser. readChunks(ByteSource byteSource, ChunkType[] chunkTypes, boolean returnAfterFirst)private voidPngWriter. writeChunk(java.io.OutputStream os, ChunkType chunkType, byte[] data)
-