Class Like
java.lang.Object
co.elastic.clients.elasticsearch._types.query_dsl.Like
- All Implemented Interfaces:
JsonpSerializable,TaggedUnion<Like.Kind,java.lang.Object>
@JsonpDeserializable public class Like extends java.lang.Object implements TaggedUnion<Like.Kind,java.lang.Object>, JsonpSerializable
Text that we want similar documents for or a lookup to a document's field for
the text.
- See Also:
- Documentation on elastic.co, API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLike.Builderstatic classLike.Kind -
Field Summary
Fields Modifier and Type Field Description static JsonpDeserializer<Like>_DESERIALIZER -
Method Summary
Modifier and Type Method Description java.lang.Object_get()Like.Kind_kind()Get the of the kind of variant held by this object.LikeDocumentdocument()Get thedocumentvariant value.booleanisDocument()Is this variant instance of kinddocument?booleanisText()Is this variant instance of kindtext?static Likeof(java.util.function.Function<Like.Builder,ObjectBuilder<Like>> fn)voidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)java.lang.Stringtext()Get thetextvariant value.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
_DESERIALIZER
-
-
Method Details
-
_kind
Description copied from interface:TaggedUnionGet the of the kind of variant held by this object.- Specified by:
_kindin interfaceTaggedUnion<Like.Kind,java.lang.Object>- Returns:
- the variant kind
-
_get
public final java.lang.Object _get()- Specified by:
_getin interfaceTaggedUnion<Like.Kind,java.lang.Object>
-
of
-
isDocument
public boolean isDocument()Is this variant instance of kinddocument? -
document
Get thedocumentvariant value.- Throws:
java.lang.IllegalStateException- if the current variant is not of thedocumentkind.
-
isText
public boolean isText()Is this variant instance of kindtext? -
text
public java.lang.String text()Get thetextvariant value.- Throws:
java.lang.IllegalStateException- if the current variant is not of thetextkind.
-
serialize
- Specified by:
serializein interfaceJsonpSerializable
-