Class Type.Aggregate (2.37.0)

public abstract static class Type.Aggregate extends Type

A value that combines incremental updates into a summarized value.

Data is never directly written or read using type Aggregate. Writes will provide either the input_type or state_type, and reads will always return the state_type .

Inheritance

java.lang.Object > Type > Type.Aggregate

Static Methods

create(Type inputType, Type.Aggregate.Aggregator aggregator)

public static Type.Aggregate create(Type inputType, Type.Aggregate.Aggregator aggregator)
Parameters
NameDescription
inputTypeType
aggregatorType.Aggregate.Aggregator
Returns
TypeDescription
Type.Aggregate

Constructors

Aggregate()

public Aggregate()

Methods

getAggregator()

public abstract Type.Aggregate.Aggregator getAggregator()
Returns
TypeDescription
Type.Aggregate.Aggregator

getInputType()

public abstract Type getInputType()
Returns
TypeDescription
Type