Class MaxSizeCondition
- java.lang.Object
-
- org.elasticsearch.action.admin.indices.rollover.Condition<ByteSizeValue>
-
- org.elasticsearch.action.admin.indices.rollover.MaxSizeCondition
-
- All Implemented Interfaces:
NamedWriteable
,Writeable
,ToXContent
,ToXContentFragment
public class MaxSizeCondition extends Condition<ByteSizeValue>
A size-based condition for an index size. Evaluates totrue
if the index size is at leastCondition.value
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.action.admin.indices.rollover.Condition
Condition.Result, Condition.Stats
-
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 Modifier and Type Field Description static java.lang.String
NAME
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description MaxSizeCondition(StreamInput in)
MaxSizeCondition(ByteSizeValue value)
-
Method Summary
Modifier and Type Method Description Condition.Result
evaluate(Condition.Stats stats)
static MaxSizeCondition
fromXContent(XContentParser parser)
java.lang.String
getWriteableName()
Returns the name of the writeable objectXContentBuilder
toXContent(XContentBuilder builder, ToXContent.Params params)
void
writeTo(StreamOutput out)
Write this into the StreamOutput.-
Methods inherited from class org.elasticsearch.action.admin.indices.rollover.Condition
equals, hashCode, name, toString, value
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MaxSizeCondition
public MaxSizeCondition(ByteSizeValue value)
-
MaxSizeCondition
public MaxSizeCondition(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
evaluate
public Condition.Result evaluate(Condition.Stats stats)
- Specified by:
evaluate
in classCondition<ByteSizeValue>
-
getWriteableName
public java.lang.String getWriteableName()
Description copied from interface:NamedWriteable
Returns the name of the writeable object
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Writeable
Write this into the StreamOutput.- Throws:
java.io.IOException
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Throws:
java.io.IOException
-
fromXContent
public static MaxSizeCondition fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
-