Package gov.nasa.pds.web.ui.constants
Enum TabularManagementConstants.ConditionType
- java.lang.Object
-
- java.lang.Enum<TabularManagementConstants.ConditionType>
-
- gov.nasa.pds.web.ui.constants.TabularManagementConstants.ConditionType
-
- All Implemented Interfaces:
Serializable
,Comparable<TabularManagementConstants.ConditionType>
- Enclosing class:
- TabularManagementConstants
public static enum TabularManagementConstants.ConditionType extends Enum<TabularManagementConstants.ConditionType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TabularManagementConstants.ConditionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TabularManagementConstants.ConditionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final TabularManagementConstants.ConditionType STRING
-
NUMERIC
public static final TabularManagementConstants.ConditionType NUMERIC
-
BOOLEAN
public static final TabularManagementConstants.ConditionType BOOLEAN
-
DATE_TIME
public static final TabularManagementConstants.ConditionType DATE_TIME
-
ORDER
public static final TabularManagementConstants.ConditionType ORDER
-
-
Method Detail
-
values
public static TabularManagementConstants.ConditionType[] 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 (TabularManagementConstants.ConditionType c : TabularManagementConstants.ConditionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TabularManagementConstants.ConditionType 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
-
-