public enum AdhocValueOperator extends Enum<AdhocValueOperator>
AdhocValueOperator class.
| Enum Constant and Description |
|---|
BETWEEN |
END_WITH |
EQUAL |
GREATER |
GREATER_OR_EQUAL |
IN |
IS_NOT_NULL |
IS_NULL |
LIKE |
NOT_BETWEEN |
NOT_END_WITH |
NOT_IN |
NOT_LIKE |
NOT_START_WITH |
SMALLER |
SMALLER_OR_EQUAL |
START_WITH |
UNEQUAL |
| Modifier and Type | Method and Description |
|---|---|
static AdhocValueOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdhocValueOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdhocValueOperator EQUAL
public static final AdhocValueOperator UNEQUAL
public static final AdhocValueOperator IN
public static final AdhocValueOperator NOT_IN
public static final AdhocValueOperator LIKE
public static final AdhocValueOperator NOT_LIKE
public static final AdhocValueOperator START_WITH
public static final AdhocValueOperator NOT_START_WITH
public static final AdhocValueOperator END_WITH
public static final AdhocValueOperator NOT_END_WITH
public static final AdhocValueOperator GREATER
public static final AdhocValueOperator GREATER_OR_EQUAL
public static final AdhocValueOperator SMALLER
public static final AdhocValueOperator SMALLER_OR_EQUAL
public static final AdhocValueOperator BETWEEN
public static final AdhocValueOperator NOT_BETWEEN
public static final AdhocValueOperator IS_NOT_NULL
public static final AdhocValueOperator IS_NULL
public static AdhocValueOperator[] values()
for (AdhocValueOperator c : AdhocValueOperator.values()) System.out.println(c);
public static AdhocValueOperator 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 © 2010–2021. All rights reserved.