Package com.tccc.kos.ext.dispense
Interface AbstractHolderBuilder.BuilderIterator<T>
- All Known Implementing Classes:
AbstractHolderBuilder.ArrayBuilderIterator
,AbstractHolderBuilder.ListBuilderIterator
- Enclosing class:
- AbstractHolderBuilder<T extends Holder>
public static interface AbstractHolderBuilder.BuilderIterator<T>
Iterate a value used during the build process. The iterator should be configured with
an initial value and advance to the next value on every call to
tick()
.-
Method Summary
-
Method Details
-
getValue
T getValue()Return the current iterator value. -
tick
void tick()Advance the iterator state to the next value.
-