Class Interval


  • public class Interval
    extends java.lang.Object
    An inclusive interval a..b. Used to track ranges in output and template patterns (for debugging).
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int a  
      int b  
    • Constructor Summary

      Constructors 
      Constructor Description
      Interval​(int a, int b)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • a

        public int a
      • b

        public int b
    • Constructor Detail

      • Interval

        public Interval​(int a,
                        int b)
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object