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