public enum PredicateType extends Enum<PredicateType>
| Enum Constant and Description |
|---|
AFTER |
BEFORE |
CONTAINS |
DOES_NOT_CONTAIN |
DOES_NOT_END_WITH |
DOES_NOT_MATCH_REGEX |
DOES_NOT_START_WITH |
ENDS_WITH |
EQUAL_TO |
GREATER_OR_EQUAL |
GREATER_THAN |
IS_IN |
IS_NOT_ANY_OF |
IS_NOT_IN |
IS_ONE_OF |
LESS_OR_EQUAL |
LESS_THAN |
MATCHES_REGEX |
NOT_EQUAL_TO |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
static PredicateType |
forValue(String value) |
String |
toValue() |
static PredicateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PredicateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredicateType IS_ONE_OF
public static final PredicateType ENDS_WITH
public static final PredicateType STARTS_WITH
public static final PredicateType CONTAINS
public static final PredicateType MATCHES_REGEX
public static final PredicateType IS_NOT_ANY_OF
public static final PredicateType DOES_NOT_END_WITH
public static final PredicateType DOES_NOT_START_WITH
public static final PredicateType DOES_NOT_CONTAIN
public static final PredicateType DOES_NOT_MATCH_REGEX
public static final PredicateType IS_IN
public static final PredicateType IS_NOT_IN
public static final PredicateType AFTER
public static final PredicateType BEFORE
public static final PredicateType EQUAL_TO
public static final PredicateType NOT_EQUAL_TO
public static final PredicateType GREATER_THAN
public static final PredicateType GREATER_OR_EQUAL
public static final PredicateType LESS_THAN
public static final PredicateType LESS_OR_EQUAL
public static PredicateType[] values()
for (PredicateType c : PredicateType.values()) System.out.println(c);
public static PredicateType 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 nullpublic static PredicateType forValue(String value)
public String toValue()
Copyright © 2023. All rights reserved.