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