public enum SystemVmType extends Enum<SystemVmType>
| Enum Constant and Description |
|---|
CONSOLE_PROXY |
DOMAIN_ROUTER |
SECONDARY_STORAGE_VM |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static SystemVmType |
fromValue(String type) |
String |
toString() |
static SystemVmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemVmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemVmType DOMAIN_ROUTER
public static final SystemVmType CONSOLE_PROXY
public static final SystemVmType SECONDARY_STORAGE_VM
public static final SystemVmType UNRECOGNIZED
public static SystemVmType[] values()
for (SystemVmType c : SystemVmType.values()) System.out.println(c);
public static SystemVmType 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 toString()
toString in class Enum<SystemVmType>public static SystemVmType fromValue(String type)
Copyright © 2009–2021 The Apache Software Foundation. All rights reserved.