Package adams.flow.transformer
Enum ImageObjectInfo.InfoType
- java.lang.Object
-
- java.lang.Enum<ImageObjectInfo.InfoType>
-
- adams.flow.transformer.ImageObjectInfo.InfoType
-
- All Implemented Interfaces:
Serializable
,Comparable<ImageObjectInfo.InfoType>
- Enclosing class:
- ImageObjectInfo
public static enum ImageObjectInfo.InfoType extends Enum<ImageObjectInfo.InfoType>
The type of info to provide.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASE_RECTANGLE
BITMAP
HEIGHT
INDEX_INT
INDEX_STRING
META_DATA
POLYGON_AREA
RECTANGLE
RECTANGLE_AREA
WIDTH
X
Y
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImageObjectInfo.InfoType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImageObjectInfo.InfoType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
X
public static final ImageObjectInfo.InfoType X
-
Y
public static final ImageObjectInfo.InfoType Y
-
WIDTH
public static final ImageObjectInfo.InfoType WIDTH
-
HEIGHT
public static final ImageObjectInfo.InfoType HEIGHT
-
META_DATA
public static final ImageObjectInfo.InfoType META_DATA
-
RECTANGLE
public static final ImageObjectInfo.InfoType RECTANGLE
-
BASE_RECTANGLE
public static final ImageObjectInfo.InfoType BASE_RECTANGLE
-
INDEX_STRING
public static final ImageObjectInfo.InfoType INDEX_STRING
-
INDEX_INT
public static final ImageObjectInfo.InfoType INDEX_INT
-
BITMAP
public static final ImageObjectInfo.InfoType BITMAP
-
RECTANGLE_AREA
public static final ImageObjectInfo.InfoType RECTANGLE_AREA
-
POLYGON_AREA
public static final ImageObjectInfo.InfoType POLYGON_AREA
-
-
Method Detail
-
values
public static ImageObjectInfo.InfoType[] 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 (ImageObjectInfo.InfoType c : ImageObjectInfo.InfoType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImageObjectInfo.InfoType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-