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