public enum BeanNameStrategy extends Enum<BeanNameStrategy>
| Enum Constant and Description |
|---|
DEFAULT |
FIELD_NAME |
FIELD_TYPE_NAME |
| Modifier and Type | Method and Description |
|---|---|
static BeanNameStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeanNameStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanNameStrategy DEFAULT
public static final BeanNameStrategy FIELD_NAME
public static final BeanNameStrategy FIELD_TYPE_NAME
public static BeanNameStrategy[] values()
for (BeanNameStrategy c : BeanNameStrategy.values()) System.out.println(c);
public static BeanNameStrategy 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 © 2013. All Rights Reserved.