Package adams.flow.transformer
Enum RenjinObjectInfo.InfoType
- java.lang.Object
-
- java.lang.Enum<RenjinObjectInfo.InfoType>
-
- adams.flow.transformer.RenjinObjectInfo.InfoType
-
- All Implemented Interfaces:
Serializable
,Comparable<RenjinObjectInfo.InfoType>
- Enclosing class:
- RenjinObjectInfo
public static enum RenjinObjectInfo.InfoType extends Enum<RenjinObjectInfo.InfoType>
the information type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIMENSION_NAMES
DIMENSIONS
LENGTH
NUM_COLUMNS
NUM_ROWS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RenjinObjectInfo.InfoType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RenjinObjectInfo.InfoType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LENGTH
public static final RenjinObjectInfo.InfoType LENGTH
-
NUM_ROWS
public static final RenjinObjectInfo.InfoType NUM_ROWS
-
NUM_COLUMNS
public static final RenjinObjectInfo.InfoType NUM_COLUMNS
-
DIMENSIONS
public static final RenjinObjectInfo.InfoType DIMENSIONS
-
DIMENSION_NAMES
public static final RenjinObjectInfo.InfoType DIMENSION_NAMES
-
-
Method Detail
-
values
public static RenjinObjectInfo.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 (RenjinObjectInfo.InfoType c : RenjinObjectInfo.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 RenjinObjectInfo.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
-
-