Package org.openjdk.jmc.common.item
Class Aggregators.AggregatorBase<V,C extends IItemConsumer<C>>
- java.lang.Object
-
- org.openjdk.jmc.common.item.Aggregators.AggregatorBase<V,C>
-
- All Implemented Interfaces:
IDescribable
,IAggregator<V,C>
,IItemConsumerFactory<C>
,IValueBuilder<V,java.util.Iterator<C>>
- Direct Known Subclasses:
Aggregators.MergingAggregator
- Enclosing class:
- Aggregators
public abstract static class Aggregators.AggregatorBase<V,C extends IItemConsumer<C>> extends java.lang.Object implements IAggregator<V,C>
-
-
Field Summary
Fields Modifier and Type Field Description private IType<? super V>
ct
private java.lang.String
description
private java.lang.String
name
-
Constructor Summary
Constructors Constructor Description AggregatorBase(java.lang.String name, java.lang.String description, IType<? super V> ct)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
java.lang.String
getName()
IType<? super V>
getValueType()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.openjdk.jmc.common.item.IItemConsumerFactory
acceptType, newItemConsumer
-
Methods inherited from interface org.openjdk.jmc.common.item.IValueBuilder
getValue
-
-
-
-
Method Detail
-
getValueType
public IType<? super V> getValueType()
- Specified by:
getValueType
in interfaceIValueBuilder<V,C extends IItemConsumer<C>>
- Returns:
- The type for the value
-
getName
public java.lang.String getName()
- Specified by:
getName
in interfaceIDescribable
- Returns:
- the name of this object
-
getDescription
public java.lang.String getDescription()
- Specified by:
getDescription
in interfaceIDescribable
- Returns:
- the description of this object
-
-