public enum BeanType extends Enum<BeanType>
| Enum Constant and Description |
|---|
BACKEND |
SCHEDULER |
USERS_DOMAINS_CACHE |
VDS_BROKER |
VDS_EVENT_LISTENER |
| Modifier and Type | Method and Description |
|---|---|
static BeanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanType BACKEND
public static final BeanType SCHEDULER
public static final BeanType VDS_BROKER
public static final BeanType USERS_DOMAINS_CACHE
public static final BeanType VDS_EVENT_LISTENER
public static BeanType[] values()
for (BeanType c : BeanType.values()) System.out.println(c);
public static BeanType 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. All Rights Reserved.