public enum JDBCCondition extends Enum<JDBCCondition>
| Enum Constant and Description |
|---|
Between |
Equal |
GreaterThan |
GreaterThanEqual |
IsNotNull |
IsNull |
LessThan |
LessThanEqual |
NotEqual |
NotWithin |
Within |
| Modifier and Type | Method and Description |
|---|---|
Object |
buildConstraint(Iterator argsIterator) |
static JDBCCondition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JDBCCondition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JDBCCondition NotEqual
public static final JDBCCondition GreaterThanEqual
public static final JDBCCondition LessThanEqual
public static final JDBCCondition Equal
public static final JDBCCondition GreaterThan
public static final JDBCCondition LessThan
public static final JDBCCondition NotWithin
public static final JDBCCondition Within
public static final JDBCCondition Between
public static final JDBCCondition IsNull
public static final JDBCCondition IsNotNull
public static JDBCCondition[] values()
for (JDBCCondition c : JDBCCondition.values()) System.out.println(c);
public static JDBCCondition 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 © 2014. All Rights Reserved.