Package org.elasticsearch.common.text
Class Text
java.lang.Object
org.elasticsearch.common.text.Text
- All Implemented Interfaces:
Comparable<Text>,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentFragment
public final class Text
extends Object
implements Comparable<Text>, org.elasticsearch.common.xcontent.ToXContentFragment
Both
String and BytesReference representation 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
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.Params -
Field Summary
FieldsFields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbytes()Returns aBytesReferenceview of the data.intstatic Text[]convertFromStringArray(String[] strings)booleanbooleanhasBytes()Whether aBytesReferenceview of the data is already materialized.inthashCode()booleanWhether aStringview of the data is already materialized.string()Returns aStringview of the data.toString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
Field Details
-
EMPTY_ARRAY
-
-
Constructor Details
-
Text
-
Text
-
-
Method Details
-
convertFromStringArray
-
hasBytes
public boolean hasBytes()Whether aBytesReferenceview of the data is already materialized. -
bytes
Returns aBytesReferenceview of the data. -
hasString
public boolean hasString()Whether aStringview of the data is already materialized. -
string
Returns aStringview of the data. -
toString
-
hashCode
public int hashCode() -
equals
-
compareTo
- Specified by:
compareToin interfaceComparable<Text>
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
IOException
-