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