public static enum ConfigurationPropertiesBean.BindMethod extends Enum<ConfigurationPropertiesBean.BindMethod>
Enum Constant and Description |
---|
JAVA_BEAN
Java Bean using getter/setter binding.
|
VALUE_OBJECT
Value object using constructor binding.
|
Modifier and Type | Method and Description |
---|---|
static ConfigurationPropertiesBean.BindMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationPropertiesBean.BindMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationPropertiesBean.BindMethod JAVA_BEAN
public static final ConfigurationPropertiesBean.BindMethod VALUE_OBJECT
public static ConfigurationPropertiesBean.BindMethod[] values()
for (ConfigurationPropertiesBean.BindMethod c : ConfigurationPropertiesBean.BindMethod.values()) System.out.println(c);
public static ConfigurationPropertiesBean.BindMethod 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 null