public static enum Statement.Operator extends Enum<Statement.Operator>
Enum Constant and Description |
---|
EQUALS |
EXISTS |
LIKE |
NOT |
NOT_EQUALS |
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 EXISTS
public static final Statement.Operator NOT
public static final Statement.Operator LIKE
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.