public enum DeviceInterface extends Enum<DeviceInterface>
| Modifier and Type | Method and Description |
|---|---|
static DeviceInterface |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceInterface[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceInterface NODEV
public static final DeviceInterface SAS
public static final DeviceInterface SATA
public static final DeviceInterface UNKNOWN
public static DeviceInterface[] values()
for (DeviceInterface c : DeviceInterface.values()) System.out.println(c);
public static DeviceInterface 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 © 2016. All rights reserved.