Class Range


  • public class Range
    extends java.lang.Object
    Used by catch handlers to handle overlapping ranges
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) int from  
      (package private) int to  
    • Constructor Summary

      Constructors 
      Constructor Description
      Range​(int aFrom, int aTo)  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      (package private) static Range intersect​(int a1, int e1, int a2, int e2)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • from

        int from
      • to

        int to
    • Constructor Detail

      • Range

        public Range​(int aFrom,
                     int aTo)
    • Method Detail

      • intersect

        static Range intersect​(int a1,
                               int e1,
                               int a2,
                               int e2)