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