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