public enum QueryOperator extends java.lang.Enum<QueryOperator>
Enum Constant and Description |
---|
EQUAL
Indicates that the value of a property must match the specified string exactly.
|
LIKE
Indicates that the query should look for business rule groups where a property value
is like the specified string.
|
NOT_EQUAL
Indicates that the value of a property must not match the specified string.
|
NOT_LIKE
Indicates that the query should look for business rule groups where a property value is
not like the specified string.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
COPYRIGHT |
Modifier and Type | Method and Description |
---|---|
static QueryOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryOperator EQUAL
public static final QueryOperator NOT_EQUAL
public static final QueryOperator LIKE
public static final QueryOperator NOT_LIKE
public static final java.lang.String COPYRIGHT
public static QueryOperator[] values()
for (QueryOperator c : QueryOperator.values()) System.out.println(c);
public static QueryOperator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null