Class ConstantGenerator<T extends java.lang.Number>

  • Type Parameters:
    T - The numeric type (Integer, Long, Double, etc.) of the constant.
    All Implemented Interfaces:
    NumberGenerator<T>

    public class ConstantGenerator<T extends java.lang.Number>
    extends java.lang.Object
    implements NumberGenerator<T>
    Convenience implementation of NumberGenerator that always returns the same value.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private T constant  
    • Constructor Summary

      Constructors 
      Constructor Description
      ConstantGenerator​(T constant)
      Creates a number generator that always returns the same values.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T nextValue()  
      • Methods inherited from class java.lang.Object

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

      • constant

        private final T extends java.lang.Number constant
    • Constructor Detail

      • ConstantGenerator

        public ConstantGenerator​(T constant)
        Creates a number generator that always returns the same values.
        Parameters:
        constant - The value to be returned by all invocations of the nextValue() method.
    • Method Detail

      • nextValue

        public T nextValue()
        Specified by:
        nextValue in interface NumberGenerator<T extends java.lang.Number>
        Returns:
        The constant value specified when the generator was constructed.