public enum AgentOutput extends Enum<AgentOutput>
| Enum Constant and Description | 
|---|
| CONSOLEValue for the  AgentConfigs#OUTPUTparameter: At VM termination execution data is
 written to the console. | 
| FILEValue for the  AgentConfigs#OUTPUTparameter: At VM termination execution data is
 written to the file specified byAgentConfigs#DESTFILE. | 
| NONEValue for the  AgentConfigs#OUTPUTparameter: 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.