Package com.exedio.cope
Enum CompareFunctionCondition.Operator
- java.lang.Object
-
- java.lang.Enum<CompareFunctionCondition.Operator>
-
- com.exedio.cope.CompareFunctionCondition.Operator
-
- All Implemented Interfaces:
Serializable
,Comparable<CompareFunctionCondition.Operator>
- Enclosing class:
- CompareFunctionCondition<E>
public static enum CompareFunctionCondition.Operator extends Enum<CompareFunctionCondition.Operator>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CompareFunctionCondition.Operator
valueOf(String name)
Returns the enum constant of this type with the specified name.static CompareFunctionCondition.Operator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Equal
public static final CompareFunctionCondition.Operator Equal
-
NotEqual
public static final CompareFunctionCondition.Operator NotEqual
-
Less
public static final CompareFunctionCondition.Operator Less
-
LessEqual
public static final CompareFunctionCondition.Operator LessEqual
-
Greater
public static final CompareFunctionCondition.Operator Greater
-
GreaterEqual
public static final CompareFunctionCondition.Operator GreaterEqual
-
-
Method Detail
-
values
public static CompareFunctionCondition.Operator[] 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 (CompareFunctionCondition.Operator c : CompareFunctionCondition.Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CompareFunctionCondition.Operator 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
-
-