Class Decision.Multi
- java.lang.Object
-
- org.elasticsearch.cluster.routing.allocation.decider.Decision
-
- org.elasticsearch.cluster.routing.allocation.decider.Decision.Multi
-
- All Implemented Interfaces:
Writeable,ToXContent
- Enclosing class:
- Decision
public static class Decision.Multi extends Decision
Simple class representing a list of decisions
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.cluster.routing.allocation.decider.Decision
Decision.Multi, Decision.Single, Decision.Type
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Field Summary
-
Fields inherited from class org.elasticsearch.cluster.routing.allocation.decider.Decision
ALWAYS, NO, THROTTLE, YES
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description Multi()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Decision.Multiadd(Decision decision)Add a decision to thisDecision.Multidecision instancebooleanequals(java.lang.Object object)java.util.List<Decision>getDecisions()Return the list of all decisions that make up this decisionjava.lang.StringgetExplanation()Get the explanation for this decision.inthashCode()java.lang.Stringlabel()Get the description label for this decision.java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)Decision.Typetype()Get theDecision.Typeof this decisionvoidwriteTo(StreamOutput out)Write this into the StreamOutput.-
Methods inherited from class org.elasticsearch.cluster.routing.allocation.decider.Decision
readFrom, single
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
isFragment
-
-
-
-
Method Detail
-
add
public Decision.Multi add(Decision decision)
Add a decision to thisDecision.Multidecision instance- Parameters:
decision-Decisionto add- Returns:
Decision.Multidecision instance with the given decision added
-
type
public Decision.Type type()
Description copied from class:DecisionGet theDecision.Typeof this decision- Specified by:
typein classDecision- Returns:
Decision.Typeof this decision
-
label
@Nullable public java.lang.String label()
Description copied from class:DecisionGet the description label for this decision.
-
getExplanation
@Nullable public java.lang.String getExplanation()
Description copied from class:DecisionGet the explanation for this decision.- Specified by:
getExplanationin classDecision
-
getDecisions
public java.util.List<Decision> getDecisions()
Description copied from class:DecisionReturn the list of all decisions that make up this decision- Specified by:
getDecisionsin classDecision
-
equals
public boolean equals(java.lang.Object object)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Throws:
java.io.IOException
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:WriteableWrite this into the StreamOutput.- Throws:
java.io.IOException
-
-