static <E extends Enum<E>> EnumValidator<E> |
EnumValidator.create(Class<E> enumType,
boolean nullable,
boolean allowExpressions) |
Deprecated.
|
static <E extends Enum<E>> EnumValidator<E> |
EnumValidator.create(Class<E> enumType,
boolean nullable,
boolean allowExpressions,
E... allowed) |
Deprecated.
|
static <E extends Enum<E>> EnumValidator<E> |
EnumValidator.create(Class<E> enumType,
boolean nullable,
E... allowed) |
Deprecated.
|
static <E extends Enum<E>> EnumValidator<E> |
EnumValidator.create(Class<E> enumType,
E... allowed) |
Creates a new validator for the enum type with the allowed values defined in the allowed parameter.
|
static <E extends Enum<E>> EnumValidator<E> |
EnumValidator.create(Class<E> enumType,
EnumSet<E> allowed) |
Creates a new validator for the enum type with the allowed values defined in the allowed parameter.
|