Package dap4.core.ce
Enum CEAST.Sort
- java.lang.Object
-
- java.lang.Enum<CEAST.Sort>
-
- dap4.core.ce.CEAST.Sort
-
- All Implemented Interfaces:
Serializable
,Comparable<CEAST.Sort>
- Enclosing class:
- CEAST
public static enum CEAST.Sort extends Enum<CEAST.Sort>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONSTANT
CONSTRAINT
DEFINE
EXPR
PROJECTION
SEGMENT
SELECTION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CEAST.Sort
valueOf(String name)
Returns the enum constant of this type with the specified name.static CEAST.Sort[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONSTRAINT
public static final CEAST.Sort CONSTRAINT
-
PROJECTION
public static final CEAST.Sort PROJECTION
-
SEGMENT
public static final CEAST.Sort SEGMENT
-
SELECTION
public static final CEAST.Sort SELECTION
-
EXPR
public static final CEAST.Sort EXPR
-
CONSTANT
public static final CEAST.Sort CONSTANT
-
DEFINE
public static final CEAST.Sort DEFINE
-
-
Method Detail
-
values
public static CEAST.Sort[] 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 (CEAST.Sort c : CEAST.Sort.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CEAST.Sort 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
-
-