public enum GinScope extends Enum<GinScope>
Enum Constant and Description |
---|
EAGER_SINGLETON |
NO_SCOPE |
SINGLETON |
Modifier and Type | Method and Description |
---|---|
static GinScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GinScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GinScope NO_SCOPE
public static final GinScope SINGLETON
public static final GinScope EAGER_SINGLETON
public static GinScope[] values()
for (GinScope c : GinScope.values()) System.out.println(c);
public static GinScope 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 © 2008–2018. All rights reserved.