public static enum Statement.Operator extends Enum<Statement.Operator>
Enum Constant and Description |
---|
CONTAINS |
ENDS_WITH |
EQUALS |
GREATER_THAN |
GREATER_THAN_EQUALS |
IS_NULL |
LESS_THAN |
LESS_THAN_EQUALS |
NOT_EQUALS |
STARTS_WITH |
Modifier and Type | Method and Description |
---|---|
static Statement.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Statement.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Statement.Operator EQUALS
public static final Statement.Operator NOT_EQUALS
public static final Statement.Operator LESS_THAN
public static final Statement.Operator GREATER_THAN
public static final Statement.Operator LESS_THAN_EQUALS
public static final Statement.Operator GREATER_THAN_EQUALS
public static final Statement.Operator STARTS_WITH
public static final Statement.Operator ENDS_WITH
public static final Statement.Operator CONTAINS
public static final Statement.Operator IS_NULL
public static Statement.Operator[] values()
for (Statement.Operator c : Statement.Operator.values()) System.out.println(c);
public static Statement.Operator 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 © 1982–2022 Adobe Systems Inc.. All rights reserved.