Package org.elasticsearch.search
Class DocValueFormat.DateTime
- java.lang.Object
-
- org.elasticsearch.search.DocValueFormat.DateTime
-
- All Implemented Interfaces:
NamedWriteable
,Writeable
,DocValueFormat
- Enclosing interface:
- DocValueFormat
public static final class DocValueFormat.DateTime extends java.lang.Object implements DocValueFormat
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.search.DocValueFormat
DocValueFormat.DateTime, DocValueFormat.Decimal
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Constructor Summary
Constructors Constructor Description DateTime(StreamInput in)
DateTime(DateFormatter formatter, org.joda.time.DateTimeZone timeZone)
-
Method Summary
Modifier and Type Method Description java.lang.String
format(double value)
Format a double value.java.lang.String
format(long value)
Format a long value.java.lang.String
getWriteableName()
Returns the name of the writeable objectdouble
parseDouble(java.lang.String value, boolean roundUp, java.util.function.LongSupplier now)
Parse a value that was formatted withDocValueFormat.format(double)
back to the original double value.long
parseLong(java.lang.String value, boolean roundUp, java.util.function.LongSupplier now)
Parse a value that was formatted withDocValueFormat.format(long)
back to the original long value.void
writeTo(StreamOutput out)
Write this into the StreamOutput.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.search.DocValueFormat
format, parseBytesRef
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DateTime
public DateTime(DateFormatter formatter, org.joda.time.DateTimeZone timeZone)
-
DateTime
public DateTime(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
getWriteableName
public java.lang.String getWriteableName()
Description copied from interface:NamedWriteable
Returns the name of the writeable object- Specified by:
getWriteableName
in interfaceNamedWriteable
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Writeable
Write this into the StreamOutput.
-
format
public java.lang.String format(long value)
Description copied from interface:DocValueFormat
Format a long value. This is used by terms and histogram aggregations to format keys for fields that use longs as a doc value representation such as thelong
anddate
fields.- Specified by:
format
in interfaceDocValueFormat
-
format
public java.lang.String format(double value)
Description copied from interface:DocValueFormat
Format a double value. This is used by terms and stats aggregations to format keys for fields that use numbers as a doc value representation such as thelong
,double
ordate
fields.- Specified by:
format
in interfaceDocValueFormat
-
parseLong
public long parseLong(java.lang.String value, boolean roundUp, java.util.function.LongSupplier now)
Description copied from interface:DocValueFormat
Parse a value that was formatted withDocValueFormat.format(long)
back to the original long value.- Specified by:
parseLong
in interfaceDocValueFormat
-
parseDouble
public double parseDouble(java.lang.String value, boolean roundUp, java.util.function.LongSupplier now)
Description copied from interface:DocValueFormat
Parse a value that was formatted withDocValueFormat.format(double)
back to the original double value.- Specified by:
parseDouble
in interfaceDocValueFormat
-
-