public static enum SpringBeanUtils.AutoType extends java.lang.Enum<SpringBeanUtils.AutoType>
| Enum Constant and Description |
|---|
AUTOWIRE_AUTODETECT |
AUTOWIRE_BY_NAME |
AUTOWIRE_BY_TYPE |
AUTOWIRE_CONSTRUCTOR |
AUTOWIRE_NO |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static SpringBeanUtils.AutoType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SpringBeanUtils.AutoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpringBeanUtils.AutoType AUTOWIRE_NO
public static final SpringBeanUtils.AutoType AUTOWIRE_BY_NAME
public static final SpringBeanUtils.AutoType AUTOWIRE_BY_TYPE
public static final SpringBeanUtils.AutoType AUTOWIRE_CONSTRUCTOR
public static final SpringBeanUtils.AutoType AUTOWIRE_AUTODETECT
public static SpringBeanUtils.AutoType[] values()
for (SpringBeanUtils.AutoType c : SpringBeanUtils.AutoType.values()) System.out.println(c);
public static SpringBeanUtils.AutoType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()