public static enum Validator.ValidatorErrorKind extends Enum<Validator.ValidatorErrorKind>
| Enum Constant and Description |
|---|
Empty |
Equals |
NotEmpty |
NotEquals |
NotSet |
NotValid |
Required |
| Modifier and Type | Method and Description |
|---|---|
static Validator.ValidatorErrorKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Validator.ValidatorErrorKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Validator.ValidatorErrorKind Required
public static final Validator.ValidatorErrorKind NotSet
public static final Validator.ValidatorErrorKind Equals
public static final Validator.ValidatorErrorKind NotEquals
public static final Validator.ValidatorErrorKind Empty
public static final Validator.ValidatorErrorKind NotEmpty
public static final Validator.ValidatorErrorKind NotValid
public static Validator.ValidatorErrorKind[] values()
for (Validator.ValidatorErrorKind c : Validator.ValidatorErrorKind.values()) System.out.println(c);
public static Validator.ValidatorErrorKind 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 © 2020. All rights reserved.