Class QueryResponse
java.lang.Object
co.elastic.clients.elasticsearch.sql.QueryResponse
- All Implemented Interfaces:
JsonpSerializable
@JsonpDeserializable public class QueryResponse extends java.lang.Object implements JsonpSerializable
- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classQueryResponse.BuilderBuilder forQueryResponse. -
Field Summary
Fields Modifier and Type Field Description static JsonpDeserializer<QueryResponse>_DESERIALIZERJson deserializer forQueryResponse -
Method Summary
Modifier and Type Method Description java.util.List<Column>columns()Column headings for the search results.java.lang.Stringcursor()Cursor for the next set of paginated results.java.lang.Stringid()Identifier for the search.java.lang.BooleanisPartial()Iftrue, the response does not contain complete search results.java.lang.BooleanisRunning()Iftrue, the search is still running.static QueryResponseof(java.util.function.Function<QueryResponse.Builder,ObjectBuilder<QueryResponse>> fn)java.util.List<java.util.List<JsonData>>rows()Required - Values for the search results.voidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)Serialize this object to JSON.protected voidserializeInternal(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)protected static voidsetupQueryResponseDeserializer(ObjectDeserializer<QueryResponse.Builder> op)java.lang.StringtoString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Field Details
-
_DESERIALIZER
Json deserializer forQueryResponse
-
-
Method Details
-
of
public static QueryResponse of(java.util.function.Function<QueryResponse.Builder,ObjectBuilder<QueryResponse>> fn) -
id
@Nullable public final java.lang.String id()Identifier for the search. This value is only returned for async and saved synchronous searches. For CSV, TSV, and TXT responses, this value is returned in theAsync-IDHTTP header.API name:
id -
isRunning
@Nullable public final java.lang.Boolean isRunning()Iftrue, the search is still running. If false, the search has finished. This value is only returned for async and saved synchronous searches. For CSV, TSV, and TXT responses, this value is returned in theAsync-partialHTTP header.API name:
is_running -
isPartial
@Nullable public final java.lang.Boolean isPartial()Iftrue, the response does not contain complete search results. Ifis_partialistrueandis_runningistrue, the search is still running. Ifis_partialistruebutis_runningisfalse, the results are partial due to a failure or timeout. This value is only returned for async and saved synchronous searches. For CSV, TSV, and TXT responses, this value is returned in theAsync-partialHTTP header.API name:
is_partial -
columns
Column headings for the search results. Each object is a column.API name:
columns -
cursor
@Nullable public final java.lang.String cursor()Cursor for the next set of paginated results. For CSV, TSV, and TXT responses, this value is returned in theCursorHTTP header.API name:
cursor -
rows
Required - Values for the search results.API name:
rows -
serialize
Serialize this object to JSON.- Specified by:
serializein interfaceJsonpSerializable
-
serializeInternal
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-
setupQueryResponseDeserializer
-