public enum EComparisonType extends Enum<EComparisonType>
Enum Constant and Description |
---|
equals |
greaterThan |
greaterThanOrEqualTo |
leftOuterJoin |
lessThan |
lessThanOrEqualTo |
notEqualToBrackets |
notEqualToCaret |
notEqualToExclamation |
notGreaterThan |
notGreaterThanToCaret |
notLessThan |
notLessThanToCaret |
nullSafeEquals |
rightOuterJoin |
unknown |
Modifier and Type | Method and Description |
---|---|
static EComparisonType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EComparisonType unknown
public static final EComparisonType equals
public static final EComparisonType nullSafeEquals
public static final EComparisonType greaterThan
public static final EComparisonType lessThan
public static final EComparisonType greaterThanOrEqualTo
public static final EComparisonType lessThanOrEqualTo
public static final EComparisonType notEqualToBrackets
public static final EComparisonType notEqualToExclamation
public static final EComparisonType notEqualToCaret
public static final EComparisonType notLessThan
public static final EComparisonType notLessThanToCaret
public static final EComparisonType notGreaterThan
public static final EComparisonType notGreaterThanToCaret
public static final EComparisonType leftOuterJoin
public static final EComparisonType rightOuterJoin
public static EComparisonType[] values()
for (EComparisonType c : EComparisonType.values()) System.out.println(c);
public static EComparisonType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.