public enum CheckTestType extends Enum<CheckTestType>
Java class for CheckTestType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CheckTestType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="sourceTests"/>
<enumeration value="hostTests"/>
<enumeration value="resourcePoolTests"/>
<enumeration value="datastoreTests"/>
<enumeration value="networkTests"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DATASTORE_TESTS |
HOST_TESTS |
NETWORK_TESTS |
RESOURCE_POOL_TESTS |
SOURCE_TESTS |
| Modifier and Type | Method and Description |
|---|---|
static CheckTestType |
fromValue(String v) |
String |
value() |
static CheckTestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckTestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckTestType SOURCE_TESTS
public static final CheckTestType HOST_TESTS
public static final CheckTestType RESOURCE_POOL_TESTS
public static final CheckTestType DATASTORE_TESTS
public static final CheckTestType NETWORK_TESTS
public static CheckTestType[] values()
for (CheckTestType c : CheckTestType.values()) System.out.println(c);
public static CheckTestType 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 value()
public static CheckTestType fromValue(String v)
Copyright © 2018. All rights reserved.