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