Interface DoubleRange

All Superinterfaces:
Range<Double>

@Immutable public interface DoubleRange extends Range<Double>
  • Method Summary

    Modifier and Type
    Method
    Description
    max()
    Returns the maximum value (inclusive).
    double
    Returns the maximum value (inclusive).
    min()
    Returns the minimum value (inclusive).
    double
    Returns the minimum value (inclusive).
  • Method Details

    • minDouble

      double minDouble()
      Returns the minimum value (inclusive).
      Returns:
      minimum value
    • maxDouble

      double maxDouble()
      Returns the maximum value (inclusive).
      Returns:
      maximum value
    • min

      default @NonNull Double min()
      Description copied from interface: Range
      Returns the minimum value (inclusive).
      Specified by:
      min in interface Range<Double>
      Returns:
      minimum value
    • max

      default @NonNull Double max()
      Description copied from interface: Range
      Returns the maximum value (inclusive).
      Specified by:
      max in interface Range<Double>
      Returns:
      maximum value