Uses of Class
org.apache.commons.functor.generator.BaseGenerator
-
Packages that use BaseGenerator Package Description org.apache.commons.functor.generator Contains code related to Generators.org.apache.commons.functor.generator.util Contains utility code for Generators. -
-
Uses of BaseGenerator in org.apache.commons.functor.generator
Subclasses of BaseGenerator in org.apache.commons.functor.generator Modifier and Type Class Description classFilteredGenerator<E>Generator that filters another Generator by only passing through those elements that are matched by a specified UnaryPredicate.classGenerateUntil<E>Wrap anotherGeneratorsuch thatGenerateUntil.run(UnaryProcedure)terminates once a condition has been satisfied (test after).classGenerateWhile<E>Wrap anotherGeneratorsuch thatGenerateWhile.run(UnaryProcedure)continues as long as a condition is true (test after).classIteratorToGeneratorAdapter<E>Adapts anIteratorto theGeneratorinterface.classTransformedGenerator<I,E>Generator that transforms the elements of another Generator.classUntilGenerate<E>Wrap anotherGeneratorsuch thatUntilGenerate.run(UnaryProcedure)terminates once a condition has been satisfied.classWhileGenerate<E>Wrap anotherGeneratorsuch thatWhileGenerate.run(UnaryProcedure)continues as long as a condition is true (test before). -
Uses of BaseGenerator in org.apache.commons.functor.generator.util
Subclasses of BaseGenerator in org.apache.commons.functor.generator.util Modifier and Type Class Description classIntegerRangeA generator for the range from (inclusive) to to (exclusive).classLongRangeA generator for the range from (inclusive) to to (exclusive).
-