Enum BinaryConditionalOperator
- java.lang.Object
- 
- java.lang.Enum<BinaryConditionalOperator>
- 
- org.apache.openjpa.persistence.query.BinaryConditionalOperator
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<BinaryConditionalOperator>
 
 public enum BinaryConditionalOperator extends java.lang.Enum<BinaryConditionalOperator> Enumeration of conditional operator that operates on ordered pair of expression to generate a predicate.- Author:
- Pinaki Poddar
- See Also:
- BinaryExpressionPredicate
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BETWEENBETWEEN_NOTEQUALEQUAL_NOTGREATERGREATEREQUALININ_NOTLESSLESSEQUALLIKELIKE_NOTMEMBERMEMBER_NOT
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static BinaryConditionalOperatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BinaryConditionalOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
BETWEENpublic static final BinaryConditionalOperator BETWEEN 
 - 
BETWEEN_NOTpublic static final BinaryConditionalOperator BETWEEN_NOT 
 - 
EQUALpublic static final BinaryConditionalOperator EQUAL 
 - 
EQUAL_NOTpublic static final BinaryConditionalOperator EQUAL_NOT 
 - 
GREATERpublic static final BinaryConditionalOperator GREATER 
 - 
GREATEREQUALpublic static final BinaryConditionalOperator GREATEREQUAL 
 - 
INpublic static final BinaryConditionalOperator IN 
 - 
IN_NOTpublic static final BinaryConditionalOperator IN_NOT 
 - 
LESSpublic static final BinaryConditionalOperator LESS 
 - 
LESSEQUALpublic static final BinaryConditionalOperator LESSEQUAL 
 - 
LIKEpublic static final BinaryConditionalOperator LIKE 
 - 
LIKE_NOTpublic static final BinaryConditionalOperator LIKE_NOT 
 - 
MEMBERpublic static final BinaryConditionalOperator MEMBER 
 - 
MEMBER_NOTpublic static final BinaryConditionalOperator MEMBER_NOT 
 
- 
 - 
Method Detail- 
valuespublic static BinaryConditionalOperator[] 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 (BinaryConditionalOperator c : BinaryConditionalOperator.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static BinaryConditionalOperator 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Enum<BinaryConditionalOperator>
 
 
- 
 
-