|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
ObjectEnum<InformationType>
InformationType
public enum InformationType
The type of information produced or modified by an image reader or writer.
| coverage/geotk-coverageio (download) | View source code for this class |
| Enum Constant Summary | |
|---|---|
IMAGE
The reader or writer may produce or modify raster or rendered images. |
|
IMAGE_METADATA
The reader or writer may produce or modify image metadata. |
|
RASTER
The reader or writer may produce or modify raster. |
|
STREAM_METADATA
The reader or writer may produce or modify stream metadata. |
|
| Method Summary | |
|---|---|
static InformationType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static InformationType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final InformationType STREAM_METADATA
ImageReader.getStreamMetadata()public static final InformationType IMAGE_METADATA
ImageReader.getImageMetadata(int)public static final InformationType RASTER
ImageReader.canReadRaster(),
ImageWriter.canWriteRasters()public static final InformationType IMAGE
Note that IMAGE usually implies RASTER with the addition of
color model processing.
ImageReader.read(int),
ImageWriter.write(RenderedImage)| Method Detail |
|---|
public static InformationType[] values()
for (InformationType c : InformationType.values()) System.out.println(c);
public static InformationType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||