@InterfaceAudience.Public @InterfaceStability.Unstable public enum ContainerUpdateType extends Enum<ContainerUpdateType>
Enum Constant and 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 and Description |
---|---|
static ContainerUpdateType |
valueOf(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(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 © 2023 Apache Software Foundation. All rights reserved.