Interface ByteRange

All Superinterfaces:
Range<Byte>

@Immutable public interface ByteRange extends Range<Byte>
  • Method Summary

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

    • minByte

      byte minByte()
      Returns the minimum value (inclusive).
      Returns:
      minimum value
    • maxByte

      byte maxByte()
      Returns the maximum value (inclusive).
      Returns:
      maximum value
    • min

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

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