Class HitsSequence.Builder<TEvent>
java.lang.Object
co.elastic.clients.util.ObjectBuilderBase
co.elastic.clients.elasticsearch.eql.HitsSequence.Builder<TEvent>
- All Implemented Interfaces:
ObjectBuilder<HitsSequence<TEvent>>
- Enclosing class:
- HitsSequence<TEvent>
public static class HitsSequence.Builder<TEvent> extends ObjectBuilderBase implements ObjectBuilder<HitsSequence<TEvent>>
Builder for
HitsSequence.-
Constructor Summary
Constructors Constructor Description Builder() -
Method Summary
Modifier and Type Method Description HitsSequence<TEvent>build()Builds aHitsSequence.HitsSequence.Builder<TEvent>events(HitsEvent<TEvent> value, HitsEvent<TEvent>... values)Required - Contains events matching the query.HitsSequence.Builder<TEvent>events(java.util.function.Function<HitsEvent.Builder<TEvent>,ObjectBuilder<HitsEvent<TEvent>>> fn)Required - Contains events matching the query.HitsSequence.Builder<TEvent>events(java.util.List<HitsEvent<TEvent>> list)Required - Contains events matching the query.HitsSequence.Builder<TEvent>joinKeys(JsonData value, JsonData... values)Required - Shared field values used to constrain matches in the sequence.HitsSequence.Builder<TEvent>joinKeys(java.util.List<JsonData> list)Required - Shared field values used to constrain matches in the sequence.HitsSequence.Builder<TEvent>tEventSerializer(JsonpSerializer<TEvent> value)Serializer for TEvent.Methods inherited from class co.elastic.clients.util.ObjectBuilderBase
_checkSingleUse, _listAdd, _listAddAll, _mapPut, _mapPutAllMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
events
Required - Contains events matching the query. Each object represents a matching event.API name:
eventsAdds all elements of
listtoevents. -
events
public final HitsSequence.Builder<TEvent> events(HitsEvent<TEvent> value, HitsEvent<TEvent>... values)Required - Contains events matching the query. Each object represents a matching event.API name:
eventsAdds one or more values to
events. -
events
public final HitsSequence.Builder<TEvent> events(java.util.function.Function<HitsEvent.Builder<TEvent>,ObjectBuilder<HitsEvent<TEvent>>> fn)Required - Contains events matching the query. Each object represents a matching event.API name:
eventsAdds a value to
eventsusing a builder lambda. -
joinKeys
Required - Shared field values used to constrain matches in the sequence. These are defined using the by keyword in the EQL query syntax.API name:
join_keysAdds all elements of
listtojoinKeys. -
joinKeys
Required - Shared field values used to constrain matches in the sequence. These are defined using the by keyword in the EQL query syntax.API name:
join_keysAdds one or more values to
joinKeys. -
tEventSerializer
public final HitsSequence.Builder<TEvent> tEventSerializer(@Nullable JsonpSerializer<TEvent> value)Serializer for TEvent. If not set, an attempt will be made to find a serializer from the JSON context. -
build
Builds aHitsSequence.- Specified by:
buildin interfaceObjectBuilder<TEvent>- Throws:
java.lang.NullPointerException- if some of the required fields are null.
-