public enum MatchType extends Enum<MatchType>
| Enum Constant and Description |
|---|
CONTAINS |
CONTAINS_ANY |
CONTAINS_ONLY |
EACH_CONTAINS |
EACH_CONTAINS_ANY |
EACH_CONTAINS_ONLY |
EACH_EQUALS |
EACH_NOT_CONTAINS |
EACH_NOT_EQUALS |
EQUALS |
NOT_CONTAINS |
NOT_EQUALS |
| Modifier and Type | Method and Description |
|---|---|
static MatchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchType EQUALS
public static final MatchType NOT_EQUALS
public static final MatchType CONTAINS
public static final MatchType NOT_CONTAINS
public static final MatchType CONTAINS_ONLY
public static final MatchType CONTAINS_ANY
public static final MatchType EACH_EQUALS
public static final MatchType EACH_NOT_EQUALS
public static final MatchType EACH_CONTAINS
public static final MatchType EACH_NOT_CONTAINS
public static final MatchType EACH_CONTAINS_ONLY
public static final MatchType EACH_CONTAINS_ANY
public static MatchType[] values()
for (MatchType c : MatchType.values()) System.out.println(c);
public static MatchType 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 © 2019. All rights reserved.