java.io.Serializable, java.lang.Comparable<ContainerUpdateType>@Public @Unstable public enum ContainerUpdateType extends java.lang.Enum<ContainerUpdateType>
| Enum Constant | Description |
|---|---|
DECREASE_RESOURCE |
Resource decrease.
|
DEMOTE_EXECUTION_TYPE |
Execution Type demotion.
|
INCREASE_RESOURCE |
Resource increase.
|
PROMOTE_EXECUTION_TYPE |
Execution Type promotion.
|
| Modifier and Type | Method | Description |
|---|---|---|
static ContainerUpdateType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ContainerUpdateType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerUpdateType INCREASE_RESOURCE
public static final ContainerUpdateType DECREASE_RESOURCE
public static final ContainerUpdateType PROMOTE_EXECUTION_TYPE
public static final ContainerUpdateType DEMOTE_EXECUTION_TYPE
public static ContainerUpdateType[] values()
for (ContainerUpdateType c : ContainerUpdateType.values()) System.out.println(c);
public static ContainerUpdateType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.