public enum QueryPropertyComparisonType extends Enum<QueryPropertyComparisonType>
| Enum Constant and Description |
|---|
CONTAINS_ANY_TOKEN |
CONTAINS_TOKEN |
DEFINED |
EQUALS |
NOT_DEFINED |
NOT_EQUALS |
REGEX |
| Modifier and Type | Method and Description |
|---|---|
static QueryPropertyComparisonType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryPropertyComparisonType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryPropertyComparisonType EQUALS
public static final QueryPropertyComparisonType NOT_EQUALS
public static final QueryPropertyComparisonType CONTAINS_TOKEN
public static final QueryPropertyComparisonType CONTAINS_ANY_TOKEN
public static final QueryPropertyComparisonType REGEX
public static final QueryPropertyComparisonType DEFINED
public static final QueryPropertyComparisonType NOT_DEFINED
public static QueryPropertyComparisonType[] values()
for (QueryPropertyComparisonType c : QueryPropertyComparisonType.values()) System.out.println(c);
public static QueryPropertyComparisonType 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 © 2021 JBoss by Red Hat. All rights reserved.