public static enum JacocoTaskExtension.Output extends java.lang.Enum<JacocoTaskExtension.Output>
| Enum Constant | Description | 
|---|---|
| FILE | |
| NONE | |
| TCP_CLIENT | |
| TCP_SERVER | 
| Modifier and Type | Method | Description | 
|---|---|---|
| java.lang.String | getAsArg() | Gets type in format of agent argument. | 
| static JacocoTaskExtension.Output | valueOf(java.lang.String name) | Returns the enum constant of this type with the specified name. | 
| static JacocoTaskExtension.Output[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final JacocoTaskExtension.Output FILE
public static final JacocoTaskExtension.Output TCP_SERVER
public static final JacocoTaskExtension.Output TCP_CLIENT
public static final JacocoTaskExtension.Output NONE
public static JacocoTaskExtension.Output[] values()
for (JacocoTaskExtension.Output c : JacocoTaskExtension.Output.values()) System.out.println(c);
public static JacocoTaskExtension.Output valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getAsArg()