public enum Operator extends Enum<Operator>
Enum Constant and Description |
---|
EQUAL |
GREATER |
GREATER_EQUAL |
IN |
LIKE |
LIKE_$ |
LIKE$_ |
LIKE$_$ |
NOT_EQUAL |
NOT_IN |
NOT_LIKE |
NOT_LIKE_$ |
NOT_LIKE$_ |
NOT_LIKE$_$ |
SMALLER |
SMALLER_EQUAL |
Modifier and Type | Method and Description |
---|---|
static Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operator EQUAL
public static final Operator NOT_EQUAL
public static final Operator SMALLER
public static final Operator SMALLER_EQUAL
public static final Operator GREATER
public static final Operator GREATER_EQUAL
public static final Operator LIKE
public static final Operator LIKE_$
public static final Operator LIKE$_
public static final Operator LIKE$_$
public static final Operator NOT_LIKE
public static final Operator NOT_LIKE_$
public static final Operator NOT_LIKE$_
public static final Operator NOT_LIKE$_$
public static final Operator IN
public static final Operator NOT_IN
public static Operator[] values()
for (Operator c : Operator.values()) System.out.println(c);
public static 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 © 2003–2022 XDEV Software. All rights reserved.