public static enum API.TaskType extends java.lang.Enum<API.TaskType>
| Enum Constant and Description |
|---|
DNSLOOKUP |
HTTP |
INVALID |
PARALLEL |
PING |
SEQUENTIAL |
TCPTHROUGHPUT |
TRACEROUTE |
UDPBURST |
| Modifier and Type | Method and Description |
|---|---|
static API.TaskType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static API.TaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final API.TaskType DNSLOOKUP
public static final API.TaskType HTTP
public static final API.TaskType PING
public static final API.TaskType TRACEROUTE
public static final API.TaskType TCPTHROUGHPUT
public static final API.TaskType UDPBURST
public static final API.TaskType PARALLEL
public static final API.TaskType SEQUENTIAL
public static final API.TaskType INVALID
public static API.TaskType[] values()
for (API.TaskType c : API.TaskType.values()) System.out.println(c);
public static API.TaskType 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 null