public static enum DatabaseSupport.SqlComparator extends Enum<DatabaseSupport.SqlComparator>
| Enum Constant and Description |
|---|
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
NOT_EQUAL_TO |
| Modifier and Type | Method and Description |
|---|---|
static DatabaseSupport.SqlComparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseSupport.SqlComparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseSupport.SqlComparator LESS_THAN_OR_EQUAL_TO
public static final DatabaseSupport.SqlComparator LESS_THAN
public static final DatabaseSupport.SqlComparator EQUAL_TO
public static final DatabaseSupport.SqlComparator NOT_EQUAL_TO
public static final DatabaseSupport.SqlComparator GREATER_THAN
public static final DatabaseSupport.SqlComparator GREATER_THAN_OR_EQUAL_TO
public static DatabaseSupport.SqlComparator[] values()
for (DatabaseSupport.SqlComparator c : DatabaseSupport.SqlComparator.values()) System.out.println(c);
public static DatabaseSupport.SqlComparator 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 © 2016–2019 Emory University. All rights reserved.