|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<AgentOptions.OutputMode>
org.jacoco.core.runtime.AgentOptions.OutputMode
public static enum AgentOptions.OutputMode
Possible values for AgentOptions.OUTPUT.
| Enum Constant Summary | |
|---|---|
file
Value for the AgentOptions.OUTPUT parameter: At VM
termination execution data is written to the file specified by
AgentOptions.DESTFILE. |
|
tcpclient
Value for the AgentOptions.OUTPUT parameter: At startup the
agent connects to a TCP port specified by the
AgentOptions.ADDRESS and AgentOptions.PORT attribute. |
|
tcpserver
Value for the AgentOptions.OUTPUT parameter: The agent
listens for incoming connections on a TCP port specified by
AgentOptions.ADDRESS and AgentOptions.PORT . |
|
| Method Summary | |
|---|---|
static AgentOptions.OutputMode |
valueOf(String name)
Returns 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're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final AgentOptions.OutputMode file
AgentOptions.OUTPUT parameter: At VM
termination execution data is written to the file specified by
AgentOptions.DESTFILE.
public static final AgentOptions.OutputMode tcpserver
AgentOptions.OUTPUT parameter: The agent
listens for incoming connections on a TCP port specified by
AgentOptions.ADDRESS and AgentOptions.PORT .
public static final AgentOptions.OutputMode tcpclient
AgentOptions.OUTPUT parameter: At startup the
agent connects to a TCP port specified by the
AgentOptions.ADDRESS and AgentOptions.PORT attribute.
| Method Detail |
|---|
public static final AgentOptions.OutputMode[] values()
for(AgentOptions.OutputMode c : AgentOptions.OutputMode.values())
System.out.println(c);
public static AgentOptions.OutputMode valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||