public enum AgentProperties extends Enum<AgentProperties>
Enum Constant and Description |
---|
BACKENDS |
DB_URL |
DEBUG_CONSOLE |
SAVE_ON_EXIT |
Modifier and Type | Method and Description |
---|---|
static AgentProperties |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgentProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgentProperties BACKENDS
public static final AgentProperties DEBUG_CONSOLE
public static final AgentProperties DB_URL
public static final AgentProperties SAVE_ON_EXIT
public static AgentProperties[] values()
for (AgentProperties c : AgentProperties.values()) System.out.println(c);
public static AgentProperties 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.