Package org.elasticsearch.common.text
Class Text
- java.lang.Object
-
- org.elasticsearch.common.text.Text
-
- All Implemented Interfaces:
java.lang.Comparable<Text>,ToXContent,ToXContentFragment
public final class Text extends java.lang.Object implements java.lang.Comparable<Text>, ToXContentFragment
BothStringandBytesReferencerepresentation of the text. Starts with one of those, and if the other is requests, caches the other one in a local reference so no additional conversion will be needed.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
Fields Modifier and Type Field Description static Text[]EMPTY_ARRAY-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description Text(java.lang.String text)Text(BytesReference bytes)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BytesReferencebytes()Returns aBytesReferenceview of the data.intcompareTo(Text text)static Text[]convertFromStringArray(java.lang.String[] strings)booleanequals(java.lang.Object obj)booleanhasBytes()Whether aBytesReferenceview of the data is already materialized.inthashCode()booleanhasString()Whether aStringview of the data is already materialized.java.lang.Stringstring()Returns aStringview of the data.java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
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
-
EMPTY_ARRAY
public static final Text[] EMPTY_ARRAY
-
-
Constructor Detail
-
Text
public Text(BytesReference bytes)
-
Text
public Text(java.lang.String text)
-
-
Method Detail
-
convertFromStringArray
public static Text[] convertFromStringArray(java.lang.String[] strings)
-
hasBytes
public boolean hasBytes()
Whether aBytesReferenceview of the data is already materialized.
-
bytes
public BytesReference bytes()
Returns aBytesReferenceview of the data.
-
hasString
public boolean hasString()
Whether aStringview of the data is already materialized.
-
string
public java.lang.String string()
Returns aStringview of the data.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
compareTo
public int compareTo(Text text)
- Specified by:
compareToin interfacejava.lang.Comparable<Text>
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
-