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