public enum AgentOutput extends Enum<AgentOutput>
| Enum Constant and Description |
|---|
CONSOLE
Value for the
AgentConfigs#OUTPUT parameter: At VM termination execution data is
written to the console. |
FILE
Value for the
AgentConfigs#OUTPUT parameter: At VM termination execution data is
written to the file specified by AgentConfigs#DESTFILE. |
NONE
Value for the
AgentConfigs#OUTPUT parameter: Do not produce any output. |
| Modifier and Type | Method and Description |
|---|---|
static AgentOutput |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgentOutput[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgentOutput FILE
AgentConfigs#OUTPUT parameter: At VM termination execution data is
written to the file specified by AgentConfigs#DESTFILE.public static final AgentOutput CONSOLE
AgentConfigs#OUTPUT parameter: At VM termination execution data is
written to the console.public static final AgentOutput NONE
AgentConfigs#OUTPUT parameter: Do not produce any output.public static AgentOutput[] values()
for (AgentOutput c : AgentOutput.values()) System.out.println(c);
public static AgentOutput 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 © 2010–2019 GZoltar. All rights reserved.