public enum TeaConcept extends Enum<TeaConcept>
Enum Constant and Description |
---|
ACCESS_POINT
Access point, should have config, state
|
APPLICATION
Application, should have config, state, could have children
|
GROUP
Group, should children
|
PROCESS
Process, should have config, state, could have children
|
RESOURCE
Resource, should have config
|
TOP_LEVEL
Top level type for an agent.
|
Modifier and Type | Method and Description |
---|---|
static TeaConcept |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TeaConcept[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TeaConcept ACCESS_POINT
public static final TeaConcept APPLICATION
public static final TeaConcept GROUP
public static final TeaConcept PROCESS
public static final TeaConcept RESOURCE
public static final TeaConcept TOP_LEVEL
public static TeaConcept[] values()
for (TeaConcept c : TeaConcept.values()) System.out.println(c);
public static TeaConcept 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 © 2014 Cloud Software Group, Inc.. All Rights Reserved.