public static enum BeanConfig.State extends Enum<BeanConfig.State>
Enum Constant and Description |
---|
inactive
Bean class is registered, but it CANNOT be used!!!
|
initialized
Bean is initialized and ready to use.
|
instanceCreated
Instance of bean is created, but bean isn't initialized.
|
registered
Bean class is registered, but instance of bean isn't created yet.
|
Modifier and Type | Method and Description |
---|---|
static BeanConfig.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeanConfig.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanConfig.State initialized
public static final BeanConfig.State instanceCreated
public static final BeanConfig.State registered
public static final BeanConfig.State inactive
public static BeanConfig.State[] values()
for (BeanConfig.State c : BeanConfig.State.values()) System.out.println(c);
public static BeanConfig.State 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 © 2004–2020 "Tigase, Inc.". All rights reserved.