Class Buckets<TBucket>
java.lang.Object
co.elastic.clients.elasticsearch._types.aggregations.Buckets<TBucket>
- All Implemented Interfaces:
JsonpSerializable,TaggedUnion<Buckets.Kind,Object>
public class Buckets<TBucket>
extends Object
implements TaggedUnion<Buckets.Kind,Object>, JsonpSerializable
Aggregation buckets. By default they are returned as an array, but if the
aggregation has keys configured for the different buckets, the result is a
dictionary.
- See Also:
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionfinal Object_get()final Buckets.Kind_kind()Get the of the kind of variant held by this object.array()Get thearrayvariant value.static <TBucket> JsonpDeserializer<Buckets<TBucket>>createBucketsDeserializer(JsonpDeserializer<TBucket> tBucketDeserializer) booleanisArray()Is this variant instance of kindarray?booleanisKeyed()Is this variant instance of kindkeyed?keyed()Get thekeyedvariant value.static <TBucket> Buckets<TBucket>of(Function<Buckets.Builder<TBucket>, ObjectBuilder<Buckets<TBucket>>> fn) voidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper) toString()
-
Method Details
-
_kind
Description copied from interface:TaggedUnionGet the of the kind of variant held by this object.- Specified by:
_kindin interfaceTaggedUnion<Buckets.Kind,Object> - Returns:
- the variant kind
-
_get
- Specified by:
_getin interfaceTaggedUnion<Buckets.Kind,Object>
-
of
public static <TBucket> Buckets<TBucket> of(Function<Buckets.Builder<TBucket>, ObjectBuilder<Buckets<TBucket>>> fn) -
isArray
public boolean isArray()Is this variant instance of kindarray? -
array
Get thearrayvariant value.- Throws:
IllegalStateException- if the current variant is not of thearraykind.
-
isKeyed
public boolean isKeyed()Is this variant instance of kindkeyed? -
keyed
Get thekeyedvariant value.- Throws:
IllegalStateException- if the current variant is not of thekeyedkind.
-
serialize
- Specified by:
serializein interfaceJsonpSerializable
-
toString
-
createBucketsDeserializer
public static <TBucket> JsonpDeserializer<Buckets<TBucket>> createBucketsDeserializer(JsonpDeserializer<TBucket> tBucketDeserializer)
-