Enum Aggregate.Kind
- java.lang.Object
-
- java.lang.Enum<Aggregate.Kind>
-
- org.opensearch.client.opensearch._types.aggregations.Aggregate.Kind
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Aggregate.Kind>,JsonEnum,JsonpSerializable
- Enclosing class:
- Aggregate
public static enum Aggregate.Kind extends java.lang.Enum<Aggregate.Kind> implements JsonEnum
Aggregatevariant kinds.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.opensearch.client.json.JsonEnum
JsonEnum.Deserializer<T extends JsonEnum>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringjsonValue()static Aggregate.KindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Aggregate.Kind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AdjacencyMatrix
public static final Aggregate.Kind AdjacencyMatrix
-
AutoDateHistogram
public static final Aggregate.Kind AutoDateHistogram
-
Avg
public static final Aggregate.Kind Avg
-
BoxPlot
public static final Aggregate.Kind BoxPlot
-
BucketMetricValue
public static final Aggregate.Kind BucketMetricValue
-
Cardinality
public static final Aggregate.Kind Cardinality
-
Children
public static final Aggregate.Kind Children
-
Composite
public static final Aggregate.Kind Composite
-
SimpleLongValue
public static final Aggregate.Kind SimpleLongValue
-
DateHistogram
public static final Aggregate.Kind DateHistogram
-
DateRange
public static final Aggregate.Kind DateRange
-
Derivative
public static final Aggregate.Kind Derivative
-
Dterms
public static final Aggregate.Kind Dterms
-
ExtendedStats
public static final Aggregate.Kind ExtendedStats
-
ExtendedStatsBucket
public static final Aggregate.Kind ExtendedStatsBucket
-
Filter
public static final Aggregate.Kind Filter
-
Filters
public static final Aggregate.Kind Filters
-
GeoBounds
public static final Aggregate.Kind GeoBounds
-
GeoCentroid
public static final Aggregate.Kind GeoCentroid
-
GeoDistance
public static final Aggregate.Kind GeoDistance
-
GeohashGrid
public static final Aggregate.Kind GeohashGrid
-
GeoLine
public static final Aggregate.Kind GeoLine
-
GeotileGrid
public static final Aggregate.Kind GeotileGrid
-
Global
public static final Aggregate.Kind Global
-
HdrPercentileRanks
public static final Aggregate.Kind HdrPercentileRanks
-
HdrPercentiles
public static final Aggregate.Kind HdrPercentiles
-
Histogram
public static final Aggregate.Kind Histogram
-
Inference
public static final Aggregate.Kind Inference
-
IpRange
public static final Aggregate.Kind IpRange
-
Lrareterms
public static final Aggregate.Kind Lrareterms
-
Lterms
public static final Aggregate.Kind Lterms
-
MatrixStats
public static final Aggregate.Kind MatrixStats
-
Max
public static final Aggregate.Kind Max
-
MedianAbsoluteDeviation
public static final Aggregate.Kind MedianAbsoluteDeviation
-
Min
public static final Aggregate.Kind Min
-
Missing
public static final Aggregate.Kind Missing
-
MultiTerms
public static final Aggregate.Kind MultiTerms
-
Nested
public static final Aggregate.Kind Nested
-
PercentilesBucket
public static final Aggregate.Kind PercentilesBucket
-
Range
public static final Aggregate.Kind Range
-
Rate
public static final Aggregate.Kind Rate
-
ReverseNested
public static final Aggregate.Kind ReverseNested
-
Sampler
public static final Aggregate.Kind Sampler
-
ScriptedMetric
public static final Aggregate.Kind ScriptedMetric
-
Siglterms
public static final Aggregate.Kind Siglterms
-
Sigsterms
public static final Aggregate.Kind Sigsterms
-
SimpleValue
public static final Aggregate.Kind SimpleValue
-
Stats
public static final Aggregate.Kind Stats
-
StatsBucket
public static final Aggregate.Kind StatsBucket
-
Srareterms
public static final Aggregate.Kind Srareterms
-
StringStats
public static final Aggregate.Kind StringStats
-
Sterms
public static final Aggregate.Kind Sterms
-
Sum
public static final Aggregate.Kind Sum
-
TdigestPercentileRanks
public static final Aggregate.Kind TdigestPercentileRanks
-
TdigestPercentiles
public static final Aggregate.Kind TdigestPercentiles
-
TTest
public static final Aggregate.Kind TTest
-
TopHits
public static final Aggregate.Kind TopHits
-
TopMetrics
public static final Aggregate.Kind TopMetrics
-
Umrareterms
public static final Aggregate.Kind Umrareterms
-
Umsigterms
public static final Aggregate.Kind Umsigterms
-
Umterms
public static final Aggregate.Kind Umterms
-
ValueCount
public static final Aggregate.Kind ValueCount
-
VariableWidthHistogram
public static final Aggregate.Kind VariableWidthHistogram
-
WeightedAvg
public static final Aggregate.Kind WeightedAvg
-
_Custom
public static final Aggregate.Kind _Custom
-
-
Method Detail
-
values
public static Aggregate.Kind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Aggregate.Kind c : Aggregate.Kind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Aggregate.Kind valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-