public static enum Test.TestType extends Enum<Test.TestType>
| Enum Constant and Description |
|---|
CALLINFO |
CPU_LOAD |
CPUINFO |
DISK_QUOTA |
LAST_UPDATE |
MEMORY_AVAILABLE |
NOTIFICATION |
TEST |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Test.TestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Test.TestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Test.TestType DISK_QUOTA
public static final Test.TestType CPU_LOAD
public static final Test.TestType MEMORY_AVAILABLE
public static final Test.TestType LAST_UPDATE
public static final Test.TestType NOTIFICATION
public static final Test.TestType TEST
public static final Test.TestType CALLINFO
public static final Test.TestType CPUINFO
public static Test.TestType[] values()
for (Test.TestType c : Test.TestType.values()) System.out.println(c);
public static Test.TestType 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 nullpublic String toString()
toString in class Enum<Test.TestType>Copyright © 2016. All Rights Reserved.