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>ctprivate java.lang.Stringdescriptionprivate java.lang.Stringname
-
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.StringgetDescription()java.lang.StringgetName()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:
getValueTypein interfaceIValueBuilder<V,C extends IItemConsumer<C>>- Returns:
- The type for the value
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceIDescribable- Returns:
- the name of this object
-
getDescription
public java.lang.String getDescription()
- Specified by:
getDescriptionin interfaceIDescribable- Returns:
- the description of this object
-
-