public enum ComputeRoles extends Enum<ComputeRoles>
| Enum Constant and Description |
|---|
IAAS
Enum value IaaS.
|
PAAS
Enum value PaaS.
|
| Modifier and Type | Method and Description |
|---|---|
static ComputeRoles |
fromString(String value)
Parses a serialized value to a ComputeRoles instance.
|
String |
toString() |
static ComputeRoles |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComputeRoles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComputeRoles PAAS
public static final ComputeRoles IAAS
public static ComputeRoles[] values()
for (ComputeRoles c : ComputeRoles.values()) System.out.println(c);
public static ComputeRoles 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 ComputeRoles fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<ComputeRoles>Copyright © 2019. All rights reserved.