Class DelegatingGenerator<Type>

  • All Implemented Interfaces:
    Generator<Type>
    Direct Known Subclasses:
    Md5, Sha256

    public abstract class DelegatingGenerator<Type>
    extends java.lang.Object
    implements Generator<Type>
    An abstract Generator which delegates to another Generator.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Type next()
      Generates and returns another value.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DelegatingGenerator

        protected DelegatingGenerator​(Generator<Type> mDelegate)
    • Method Detail

      • next

        public final Type next()
        Description copied from interface: Generator
        Generates and returns another value.
        Specified by:
        next in interface Generator<Type>