public enum ComponentType extends java.lang.Enum<ComponentType>
| Enum Constant and Description |
|---|
APPLICATION |
CLIENT |
COMPONENT |
CONFIGURATION |
CONTROLLER |
REPOSITORY |
SERVICE |
| Modifier and Type | Method and Description |
|---|---|
static ComponentType |
fromString(java.lang.String key) |
java.lang.String |
getKey() |
static ComponentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComponentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentType APPLICATION
public static final ComponentType SERVICE
public static final ComponentType CONTROLLER
public static final ComponentType CLIENT
public static final ComponentType REPOSITORY
public static final ComponentType CONFIGURATION
public static final ComponentType COMPONENT
public static ComponentType[] values()
for (ComponentType c : ComponentType.values()) System.out.println(c);
public static ComponentType 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 static ComponentType fromString(java.lang.String key)
public java.lang.String getKey()