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