Package com.adobe.fd.fp.service
Enum Statement.Operator
- java.lang.Object
-
- java.lang.Enum<Statement.Operator>
-
- com.adobe.fd.fp.service.Statement.Operator
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Statement.Operator>
- Enclosing class:
- Statement
public static enum Statement.Operator extends java.lang.Enum<Statement.Operator>
Enum to specify statement operator.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUALS
EXISTS
LIKE
NOT
NOT_EQUALS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Statement.Operator
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Statement.Operator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final Statement.Operator EQUALS
-
NOT_EQUALS
public static final Statement.Operator NOT_EQUALS
-
EXISTS
public static final Statement.Operator EXISTS
-
NOT
public static final Statement.Operator NOT
-
LIKE
public static final Statement.Operator LIKE
-
-
Method Detail
-
values
public static Statement.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 (Statement.Operator c : Statement.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 Statement.Operator valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-