public static enum HardwareProperty.Kind extends Enum<HardwareProperty.Kind>
Enum Constant and Description |
---|
ENUM
a list of available values is provided
|
FIXED
only the value specified in the property is available
|
RANGE
available values are described by a numeric range
|
UNRECOGNIZED
type returned as something besides the above.
|
Modifier and Type | Method and Description |
---|---|
static HardwareProperty.Kind |
fromValue(String kind) |
static HardwareProperty.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HardwareProperty.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HardwareProperty.Kind FIXED
public static final HardwareProperty.Kind ENUM
public static final HardwareProperty.Kind RANGE
public static final HardwareProperty.Kind UNRECOGNIZED
public static HardwareProperty.Kind[] values()
for (HardwareProperty.Kind c : HardwareProperty.Kind.values()) System.out.println(c);
public static HardwareProperty.Kind 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 static HardwareProperty.Kind fromValue(String kind)
Copyright © 2009-2012 jclouds. All Rights Reserved.