Package com.twelvemonkeys.imageio
Enum StandardImageMetadataSupport.SubimageInterpretation
- java.lang.Object
-
- java.lang.Enum<StandardImageMetadataSupport.SubimageInterpretation>
-
- com.twelvemonkeys.imageio.StandardImageMetadataSupport.SubimageInterpretation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StandardImageMetadataSupport.SubimageInterpretation>
- Enclosing class:
- StandardImageMetadataSupport
protected static enum StandardImageMetadataSupport.SubimageInterpretation extends java.lang.Enum<StandardImageMetadataSupport.SubimageInterpretation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AnimationFrame
CompositingLayer
FullResolution
ObjectView
Panorama
Preview
PyramidLayer
ReducedResolution
SinglePage
SpectralSlice
Standalone
TransparencyMask
Unknown
VolumeSlice
-
Constructor Summary
Constructors Modifier Constructor Description private
SubimageInterpretation()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StandardImageMetadataSupport.SubimageInterpretation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StandardImageMetadataSupport.SubimageInterpretation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Standalone
public static final StandardImageMetadataSupport.SubimageInterpretation Standalone
-
SinglePage
public static final StandardImageMetadataSupport.SubimageInterpretation SinglePage
-
FullResolution
public static final StandardImageMetadataSupport.SubimageInterpretation FullResolution
-
ReducedResolution
public static final StandardImageMetadataSupport.SubimageInterpretation ReducedResolution
-
PyramidLayer
public static final StandardImageMetadataSupport.SubimageInterpretation PyramidLayer
-
Preview
public static final StandardImageMetadataSupport.SubimageInterpretation Preview
-
VolumeSlice
public static final StandardImageMetadataSupport.SubimageInterpretation VolumeSlice
-
ObjectView
public static final StandardImageMetadataSupport.SubimageInterpretation ObjectView
-
Panorama
public static final StandardImageMetadataSupport.SubimageInterpretation Panorama
-
AnimationFrame
public static final StandardImageMetadataSupport.SubimageInterpretation AnimationFrame
-
TransparencyMask
public static final StandardImageMetadataSupport.SubimageInterpretation TransparencyMask
-
CompositingLayer
public static final StandardImageMetadataSupport.SubimageInterpretation CompositingLayer
-
SpectralSlice
public static final StandardImageMetadataSupport.SubimageInterpretation SpectralSlice
-
Unknown
public static final StandardImageMetadataSupport.SubimageInterpretation Unknown
-
-
Method Detail
-
values
public static StandardImageMetadataSupport.SubimageInterpretation[] 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.SubimageInterpretation c : StandardImageMetadataSupport.SubimageInterpretation.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.SubimageInterpretation 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
-
-