Package gov.nasa.pds.tools.constants
Enum Constants.DictionaryType
- java.lang.Object
-
- java.lang.Enum<Constants.DictionaryType>
-
- gov.nasa.pds.tools.constants.Constants.DictionaryType
-
- All Implemented Interfaces:
Serializable
,Comparable<Constants.DictionaryType>
- Enclosing class:
- Constants
public static enum Constants.DictionaryType extends Enum<Constants.DictionaryType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALPHABET
ALPHANUMERIC
ASCII_INTEGER
BIBLIO
CHARACTER
CONTEXT_DEPENDENT
CONTEXTDEPENDENT
DATA_SET
DATE
DECIMAL
DOUBLE
EXPONENTIAL
IDENTIFIER
INTEGER
NON_DECIMAL
NONDECIMAL
REAL
TIME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Constants.DictionaryType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Constants.DictionaryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALPHABET
public static final Constants.DictionaryType ALPHABET
-
ALPHANUMERIC
public static final Constants.DictionaryType ALPHANUMERIC
-
CHARACTER
public static final Constants.DictionaryType CHARACTER
-
CONTEXT_DEPENDENT
public static final Constants.DictionaryType CONTEXT_DEPENDENT
-
CONTEXTDEPENDENT
public static final Constants.DictionaryType CONTEXTDEPENDENT
-
DATE
public static final Constants.DictionaryType DATE
-
INTEGER
public static final Constants.DictionaryType INTEGER
-
REAL
public static final Constants.DictionaryType REAL
-
TIME
public static final Constants.DictionaryType TIME
-
NONDECIMAL
public static final Constants.DictionaryType NONDECIMAL
-
NON_DECIMAL
public static final Constants.DictionaryType NON_DECIMAL
-
ASCII_INTEGER
public static final Constants.DictionaryType ASCII_INTEGER
-
BIBLIO
public static final Constants.DictionaryType BIBLIO
-
DATA_SET
public static final Constants.DictionaryType DATA_SET
-
DECIMAL
public static final Constants.DictionaryType DECIMAL
-
DOUBLE
public static final Constants.DictionaryType DOUBLE
-
EXPONENTIAL
public static final Constants.DictionaryType EXPONENTIAL
-
IDENTIFIER
public static final Constants.DictionaryType IDENTIFIER
-
-
Method Detail
-
values
public static Constants.DictionaryType[] 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 (Constants.DictionaryType c : Constants.DictionaryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Constants.DictionaryType 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
-
-