Class ConstantGenerator<T extends Number>

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

    public class ConstantGenerator<T extends Number>
    extends Object
    implements NumberGenerator<T>
    Convenience implementation of NumberGenerator that always returns the same value.
    • 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 Number>
        Returns:
        The constant value specified when the generator was constructed.