public enum DBCmpType extends Enum<DBCmpType>
Enum Constant and Description |
---|
BETWEEN |
EQUAL |
GREATERTHAN |
IN |
LESSOREQUAL |
LESSTHAN |
LIKE |
MOREOREQUAL |
NONE |
NOTBETWEEN |
NOTEQUAL |
NOTIN |
NOTLIKE |
NOTNULL |
NULL |
Modifier and Type | Method and Description |
---|---|
static DBCmpType |
getNullType(DBCmpType type) |
String |
toString()
For Debugging only
|
static DBCmpType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DBCmpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBCmpType NONE
public static final DBCmpType EQUAL
public static final DBCmpType NOTEQUAL
public static final DBCmpType LESSTHAN
public static final DBCmpType MOREOREQUAL
public static final DBCmpType GREATERTHAN
public static final DBCmpType LESSOREQUAL
public static final DBCmpType LIKE
public static final DBCmpType NOTLIKE
public static final DBCmpType NULL
public static final DBCmpType NOTNULL
public static final DBCmpType BETWEEN
public static final DBCmpType NOTBETWEEN
public static final DBCmpType IN
public static final DBCmpType NOTIN
public static DBCmpType[] values()
for (DBCmpType c : DBCmpType.values()) System.out.println(c);
public static DBCmpType 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 © 2008–2023 Apache Software Foundation. All rights reserved.