Package hudson.slaves
Enum Class NodeProvisioner.StrategyDecision
- All Implemented Interfaces:
Serializable
,Comparable<NodeProvisioner.StrategyDecision>
,Constable
- Enclosing class:
- NodeProvisioner
Represents the decision taken by an individual
NodeProvisioner.Strategy
.- Since:
- 1.588
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThis decision is the default decision and indicates that theNodeProvisioner.Strategy
either could not provision sufficient resources or did not take any action.This decision indicates that theNodeProvisioner.Strategy
has taken sufficient action so as to ensure that the required resources are available, and therefore there is no requirement to consult the remaining strategies. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static NodeProvisioner.StrategyDecision[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONSULT_REMAINING_STRATEGIES
This decision is the default decision and indicates that theNodeProvisioner.Strategy
either could not provision sufficient resources or did not take any action. Any remaining strategies will be able to contribute to the ultimate decision. -
PROVISIONING_COMPLETED
This decision indicates that theNodeProvisioner.Strategy
has taken sufficient action so as to ensure that the required resources are available, and therefore there is no requirement to consult the remaining strategies. Only return this decision when you are certain that there is no need for additional provisioning actions (i.e. you detected an excess workload and have provisioned enough for that excess workload).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-