Interface LongRange

All Superinterfaces:
Range<Long>

@Immutable public interface LongRange extends Range<Long>
  • Method Summary

    Modifier and Type
    Method
    Description
    default @NonNull Long
    max()
    Returns the maximum value (inclusive).
    long
    Returns the maximum value (inclusive).
    default @NonNull Long
    min()
    Returns the minimum value (inclusive).
    long
    Returns the minimum value (inclusive).
  • Method Details

    • minLong

      long minLong()
      Returns the minimum value (inclusive).
      Returns:
      minimum value
    • maxLong

      long maxLong()
      Returns the maximum value (inclusive).
      Returns:
      maximum value
    • min

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

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