java.io.Serializable, java.lang.Comparable<AutowireTargetType>public enum AutowireTargetType extends java.lang.Enum<AutowireTargetType>
Created: 2016. 2. 24.
| Enum Constant | Description |
|---|---|
FIELD |
|
FIELD_VALUE |
|
METHOD |
| Modifier and Type | Method | Description |
|---|---|---|
static AutowireTargetType |
resolve(java.lang.String alias) |
Returns an
AutowireTargetType with a value represented
by the specified String. |
java.lang.String |
toString() |
|
static AutowireTargetType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AutowireTargetType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutowireTargetType FIELD
public static final AutowireTargetType FIELD_VALUE
public static final AutowireTargetType METHOD
public static AutowireTargetType[] values()
for (AutowireTargetType c : AutowireTargetType.values()) System.out.println(c);
public static AutowireTargetType 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 java.lang.String toString()
toString in class java.lang.Enum<AutowireTargetType>public static AutowireTargetType resolve(java.lang.String alias)
AutowireTargetType with a value represented
by the specified String.alias - the autowire target type as a StringAutowireTargetType, may be nullCopyright © 2008–2018 The Aspectran Project. All rights reserved.