public enum ScsiLunType extends Enum<ScsiLunType>
| Enum Constant and Description |
|---|
cdrom |
communications |
disk |
enclosure |
mediaChanger |
opticalDevice |
printer |
processor |
scanner |
storageArrayController |
tape |
unknown |
worm |
| Modifier and Type | Method and Description |
|---|---|
static ScsiLunType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScsiLunType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScsiLunType disk
public static final ScsiLunType tape
public static final ScsiLunType printer
public static final ScsiLunType processor
public static final ScsiLunType worm
public static final ScsiLunType cdrom
public static final ScsiLunType scanner
public static final ScsiLunType opticalDevice
public static final ScsiLunType mediaChanger
public static final ScsiLunType communications
public static final ScsiLunType storageArrayController
public static final ScsiLunType enclosure
public static final ScsiLunType unknown
public static ScsiLunType[] values()
for (ScsiLunType c : ScsiLunType.values()) System.out.println(c);
public static ScsiLunType 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 nullCopyright © 2011-2012. All Rights Reserved.