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