Interface IntRange

All Superinterfaces:
ComparableRange<Integer>, Range<Integer>
All Known Implementing Classes:
DefaultIntRange

public interface IntRange extends ComparableRange<Integer>
  • Method Details

    • startValue

      int startValue()
    • endValue

      int endValue()
    • isLowerInclusive

      boolean isLowerInclusive()
      Specified by:
      isLowerInclusive in interface ComparableRange<Integer>
    • isLowerExclusive

      boolean isLowerExclusive()
      Specified by:
      isLowerExclusive in interface ComparableRange<Integer>
    • isUpperInclusive

      boolean isUpperInclusive()
      Specified by:
      isUpperInclusive in interface ComparableRange<Integer>
    • isUpperExclusive

      boolean isUpperExclusive()
      Specified by:
      isUpperExclusive in interface ComparableRange<Integer>
    • lowerValueInclusive

      int lowerValueInclusive()
    • lowerValueExclusive

      int lowerValueExclusive()
    • lowerValue

      int lowerValue()
    • upperValue

      int upperValue()
    • upperValueInclusive

      int upperValueInclusive()
    • upperValueExclusive

      int upperValueExclusive()
    • reversedOrder

      boolean reversedOrder()
      Specified by:
      reversedOrder in interface ComparableRange<Integer>
    • stream

      IntStream stream()
    • size

      int size()
    • toIntArray

      int[] toIntArray()
    • contains

      boolean contains(int value)