Enum AgentOptions.OutputMode
- All Implemented Interfaces:
Serializable, Comparable<AgentOptions.OutputMode>, java.lang.constant.Constable
- Enclosing class:
AgentOptions
Possible values for
AgentOptions.OUTPUT.-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionValue for theAgentOptions.OUTPUTparameter: At VM termination execution data is written to the file specified byAgentOptions.DESTFILE.Value for theAgentOptions.OUTPUTparameter: Do not produce any output.Value for theAgentOptions.OUTPUTparameter: At startup the agent connects to a TCP port specified by theAgentOptions.ADDRESSandAgentOptions.PORTattribute.Value for theAgentOptions.OUTPUTparameter: The agent listens for incoming connections on a TCP port specified byAgentOptions.ADDRESSandAgentOptions.PORT. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic AgentOptions.OutputModeReturns the enum constant of this type with the specified name.static AgentOptions.OutputMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
file
Value for theAgentOptions.OUTPUTparameter: At VM termination execution data is written to the file specified byAgentOptions.DESTFILE. -
tcpserver
Value for theAgentOptions.OUTPUTparameter: The agent listens for incoming connections on a TCP port specified byAgentOptions.ADDRESSandAgentOptions.PORT. -
tcpclient
Value for theAgentOptions.OUTPUTparameter: At startup the agent connects to a TCP port specified by theAgentOptions.ADDRESSandAgentOptions.PORTattribute. -
none
Value for theAgentOptions.OUTPUTparameter: Do not produce any output.
-
-
Constructor Details
-
OutputMode
private OutputMode()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-