Package com.twelvemonkeys.imageio
Enum StandardImageMetadataSupport.PlanarConfiguration
- java.lang.Object
-
- java.lang.Enum<StandardImageMetadataSupport.PlanarConfiguration>
-
- com.twelvemonkeys.imageio.StandardImageMetadataSupport.PlanarConfiguration
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StandardImageMetadataSupport.PlanarConfiguration>
- Enclosing class:
- StandardImageMetadataSupport
protected static enum StandardImageMetadataSupport.PlanarConfiguration extends java.lang.Enum<StandardImageMetadataSupport.PlanarConfiguration>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LineInterleaved
PixelInterleaved
PlaneInterleaved
TileInterleaved
-
Constructor Summary
Constructors Modifier Constructor Description private
PlanarConfiguration()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StandardImageMetadataSupport.PlanarConfiguration
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StandardImageMetadataSupport.PlanarConfiguration[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PixelInterleaved
public static final StandardImageMetadataSupport.PlanarConfiguration PixelInterleaved
-
PlaneInterleaved
public static final StandardImageMetadataSupport.PlanarConfiguration PlaneInterleaved
-
LineInterleaved
public static final StandardImageMetadataSupport.PlanarConfiguration LineInterleaved
-
TileInterleaved
public static final StandardImageMetadataSupport.PlanarConfiguration TileInterleaved
-
-
Method Detail
-
values
public static StandardImageMetadataSupport.PlanarConfiguration[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StandardImageMetadataSupport.PlanarConfiguration c : StandardImageMetadataSupport.PlanarConfiguration.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StandardImageMetadataSupport.PlanarConfiguration valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-