Module org.elasticsearch.xcore
Record Class MlChunkedTextEmbeddingFloatResults.EmbeddingChunk
java.lang.Object
java.lang.Record
org.elasticsearch.xpack.core.ml.inference.results.MlChunkedTextEmbeddingFloatResults.EmbeddingChunk
- All Implemented Interfaces:
Writeable,org.elasticsearch.xcontent.ToXContent,org.elasticsearch.xcontent.ToXContentObject
- Enclosing class:
MlChunkedTextEmbeddingFloatResults
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
org.elasticsearch.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.xcontent.ToXContent.MapParams, org.elasticsearch.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY, EMPTY_PARAMS -
Constructor Summary
ConstructorsConstructorDescriptionEmbeddingChunk(String matchedText, double[] embedding) Creates an instance of aEmbeddingChunkrecord class. -
Method Summary
Modifier and TypeMethodDescriptionasMap()double[]Returns the value of theembeddingrecord component.booleanIt appears the default equals function for a record does not call Arrays.equals() for the embedding array.inthashCode()Use Arrays.hashCode() on the embedding arrayReturns the value of thematchedTextrecord component.final StringtoString()Returns a string representation of this record class.org.elasticsearch.xcontent.XContentBuildertoXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) voidwriteTo(StreamOutput out) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragment
-
Constructor Details
-
EmbeddingChunk
- Throws:
IOException
-
EmbeddingChunk
Creates an instance of aEmbeddingChunkrecord class.- Parameters:
matchedText- the value for thematchedTextrecord componentembedding- the value for theembeddingrecord component
-
-
Method Details
-
writeTo
- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
toXContent
public org.elasticsearch.xcontent.XContentBuilder toXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException - Specified by:
toXContentin interfaceorg.elasticsearch.xcontent.ToXContent- Throws:
IOException
-
asMap
-
equals
It appears the default equals function for a record does not call Arrays.equals() for the embedding array. -
hashCode
public int hashCode()Use Arrays.hashCode() on the embedding array -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
matchedText
Returns the value of thematchedTextrecord component.- Returns:
- the value of the
matchedTextrecord component
-
embedding
public double[] embedding()Returns the value of theembeddingrecord component.- Returns:
- the value of the
embeddingrecord component
-