Package adams.flow.transformer
Enum Mat5ArrayInfo.InfoType
- java.lang.Object
-
- java.lang.Enum<Mat5ArrayInfo.InfoType>
-
- adams.flow.transformer.Mat5ArrayInfo.InfoType
-
- All Implemented Interfaces:
Serializable
,Comparable<Mat5ArrayInfo.InfoType>
- Enclosing class:
- Mat5ArrayInfo
public static enum Mat5ArrayInfo.InfoType extends Enum<Mat5ArrayInfo.InfoType>
The type of information to generate.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
DIMENSIONS
NUM_COLS
NUM_DIMENSIONS
NUM_ELEMENTS
NUM_ROWS
STR_DIMENSIONS
TYPE_ID
TYPE_NAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Mat5ArrayInfo.InfoType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Mat5ArrayInfo.InfoType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final Mat5ArrayInfo.InfoType ALL
-
TYPE_NAME
public static final Mat5ArrayInfo.InfoType TYPE_NAME
-
TYPE_ID
public static final Mat5ArrayInfo.InfoType TYPE_ID
-
NUM_DIMENSIONS
public static final Mat5ArrayInfo.InfoType NUM_DIMENSIONS
-
STR_DIMENSIONS
public static final Mat5ArrayInfo.InfoType STR_DIMENSIONS
-
NUM_COLS
public static final Mat5ArrayInfo.InfoType NUM_COLS
-
NUM_ROWS
public static final Mat5ArrayInfo.InfoType NUM_ROWS
-
NUM_ELEMENTS
public static final Mat5ArrayInfo.InfoType NUM_ELEMENTS
-
DIMENSIONS
public static final Mat5ArrayInfo.InfoType DIMENSIONS
-
-
Method Detail
-
values
public static Mat5ArrayInfo.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 (Mat5ArrayInfo.InfoType c : Mat5ArrayInfo.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 Mat5ArrayInfo.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
-
-