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