public enum AgentProperties extends Enum<AgentProperties>
| Enum Constant and Description |
|---|
CONFIG_LISTEN_ADDRESS |
DB_URL |
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 DB_URL
public static final AgentProperties SAVE_ON_EXIT
public static final AgentProperties CONFIG_LISTEN_ADDRESS
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 © 2013. All Rights Reserved.