Module org.elasticsearch.server
Class LongBounds
java.lang.Object
org.elasticsearch.search.aggregations.bucket.histogram.LongBounds
- All Implemented Interfaces:
Writeable,ToXContent,ToXContentFragment
Represent hard_bounds and extended_bounds in date-histogram aggregations.
This class is similar to
DoubleBounds used in histograms, but is using longs to store data. LongBounds and DoubleBounds are
* not used interchangeably and therefore don't share any common interfaces except for serialization.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
FieldsFields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY, EMPTY_PARAMS -
Constructor Summary
ConstructorsConstructorDescriptionLongBounds(Long min, Long max) Construct with parsed bounds.LongBounds(String minAsStr, String maxAsStr) Construct with unparsed bounds.Read from a stream. -
Method Summary
Modifier and TypeMethodDescriptionbooleancontain(long value) booleangetMax()getMin()inthashCode()toString()toXContent(XContentBuilder builder, ToXContent.Params params) voidwriteTo(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.xcontent.ToXContentFragment
isFragment
-
Field Details
-
PARSER
-
-
Constructor Details
-
LongBounds
Construct with parsed bounds. -
LongBounds
Construct with unparsed bounds. -
LongBounds
Read from a stream.- Throws:
IOException
-
-
Method Details
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException - Specified by:
toXContentin interfaceToXContent- Throws:
IOException
-
hashCode
public int hashCode() -
equals
-
getMin
-
getMax
-
contain
public boolean contain(long value) -
toString
-