Class Type.Aggregate (2.39.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
Name Description
inputType Type
aggregator Type.Aggregate.Aggregator
Returns
Type Description
Type.Aggregate

Constructors

Aggregate()

public Aggregate()

Methods

getAggregator()

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

getInputType()

public abstract Type getInputType()
Returns
Type Description
Type