public enum DeviceContainerPolicy extends java.lang.Enum<DeviceContainerPolicy>
| Enum Constant and Description |
|---|
Composite
Indicates a device that contains other devices
|
Standalone
Indicates a device that does not contain other devices
|
| Modifier and Type | Method and Description |
|---|---|
static DeviceContainerPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeviceContainerPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceContainerPolicy Standalone
public static final DeviceContainerPolicy Composite
public static DeviceContainerPolicy[] values()
for (DeviceContainerPolicy c : DeviceContainerPolicy.values()) System.out.println(c);
public static DeviceContainerPolicy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null