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