public enum MatcherType extends Enum<MatcherType>
| Enum Constant and Description |
|---|
ALL_KEYS |
BETWEEN |
CONTAINS_ALL_OF_SET |
CONTAINS_ANY_OF_SET |
CONTAINS_STRING |
ENDS_WITH |
EQUAL_TO |
EQUAL_TO_BOOLEAN |
EQUAL_TO_SET |
GREATER_THAN_OR_EQUAL_TO |
IN_SEGMENT |
IN_SPLIT_TREATMENT |
LESS_THAN_OR_EQUAL_TO |
MATCHES_STRING |
PART_OF_SET |
STARTS_WITH |
WHITELIST |
| Modifier and Type | Method and Description |
|---|---|
static MatcherType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatcherType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatcherType ALL_KEYS
public static final MatcherType IN_SEGMENT
public static final MatcherType WHITELIST
public static final MatcherType EQUAL_TO
public static final MatcherType GREATER_THAN_OR_EQUAL_TO
public static final MatcherType LESS_THAN_OR_EQUAL_TO
public static final MatcherType BETWEEN
public static final MatcherType EQUAL_TO_SET
public static final MatcherType CONTAINS_ANY_OF_SET
public static final MatcherType CONTAINS_ALL_OF_SET
public static final MatcherType PART_OF_SET
public static final MatcherType STARTS_WITH
public static final MatcherType ENDS_WITH
public static final MatcherType CONTAINS_STRING
public static final MatcherType MATCHES_STRING
public static final MatcherType EQUAL_TO_BOOLEAN
public static final MatcherType IN_SPLIT_TREATMENT
public static MatcherType[] values()
for (MatcherType c : MatcherType.values()) System.out.println(c);
public static MatcherType 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 © 2018. All rights reserved.