Interface MaximumSupplier<T>

Type Parameters:
T - the type of values supplied by this supplier
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface MaximumSupplier<T>
Represents a supplier of maximum value.

There is no requirement that a new or distinct result be returned each time the supplier is invoked.

This is a functional interface whose functional method is getMaximum().

Version:
1.0, $Date: 2018-03-10 $
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets a maximum value.
  • Method Details

    • getMaximum

      T getMaximum()
      Gets a maximum value.
      Returns:
      a maximum value