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
,ToXContentFragment
- Enclosing class:
- Decision
public static class Decision.Multi extends Decision implements ToXContentFragment
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
-
Constructor Summary
Constructors Constructor Description Multi()
-
Method Summary
Modifier and Type Method Description Decision.Multi
add(Decision decision)
Add a decision to thisDecision.Multi
decision instanceboolean
equals(java.lang.Object object)
java.util.List<Decision>
getDecisions()
Return the list of all decisions that make up this decisionjava.lang.String
getExplanation()
Get the explanation for this decision.int
hashCode()
java.lang.String
label()
Get the description label for this decision.java.lang.String
toString()
XContentBuilder
toXContent(XContentBuilder builder, ToXContent.Params params)
Decision.Type
type()
Get theDecision.Type
of this decisionvoid
writeTo(StreamOutput out)
Write this into the StreamOutput.Methods inherited from class org.elasticsearch.cluster.routing.allocation.decider.Decision
readFrom, single
-
Constructor Details
-
Multi
public Multi()
-
-
Method Details
-
add
Add a decision to thisDecision.Multi
decision instance- Parameters:
decision
-Decision
to add- Returns:
Decision.Multi
decision instance with the given decision added
-
type
Description copied from class:Decision
Get theDecision.Type
of this decision- Specified by:
type
in classDecision
- Returns:
Decision.Type
of this decision
-
label
Description copied from class:Decision
Get the description label for this decision. -
getExplanation
Description copied from class:Decision
Get the explanation for this decision.- Specified by:
getExplanation
in classDecision
-
getDecisions
Description copied from class:Decision
Return the list of all decisions that make up this decision- Specified by:
getDecisions
in classDecision
-
equals
public boolean equals(java.lang.Object object)- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toString
in classjava.lang.Object
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
toXContent
in interfaceToXContent
- Throws:
java.io.IOException
-
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.
-