public enum TextMatchMechanism extends Enum<TextMatchMechanism>
| Enum Constant and Description |
|---|
containsExpectedValue |
endsWithExpectedValue |
exactMatchWithExpectedValue |
exactMatchWithExpectedValueWithRemovedWhiteSpace |
matchWithRegularExpression |
startsWithExpectedValue |
| Modifier and Type | Method and Description |
|---|---|
static TextMatchMechanism |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextMatchMechanism[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextMatchMechanism exactMatchWithExpectedValue
public static final TextMatchMechanism startsWithExpectedValue
public static final TextMatchMechanism endsWithExpectedValue
public static final TextMatchMechanism containsExpectedValue
public static final TextMatchMechanism matchWithRegularExpression
public static final TextMatchMechanism exactMatchWithExpectedValueWithRemovedWhiteSpace
public static TextMatchMechanism[] values()
for (TextMatchMechanism c : TextMatchMechanism.values()) System.out.println(c);
public static TextMatchMechanism 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. All rights reserved.