public enum ContainerAllocationOutcome extends Enum<ContainerAllocationOutcome>
| Enum Constant and Description |
|---|
Escalated
This was an escalated placement
|
Open
Open placement
|
Placed
Allocated explicitly where requested
|
Unallocated
There wasn't a request for this
|
| Modifier and Type | Method and Description |
|---|---|
static ContainerAllocationOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerAllocationOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerAllocationOutcome Unallocated
public static final ContainerAllocationOutcome Open
public static final ContainerAllocationOutcome Placed
public static final ContainerAllocationOutcome Escalated
public static ContainerAllocationOutcome[] values()
for (ContainerAllocationOutcome c : ContainerAllocationOutcome.values()) System.out.println(c);
public static ContainerAllocationOutcome 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 nullCopyright © 2014–2015 The Apache Software Foundation. All rights reserved.