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