Package org.swtchart

Class Range


  • public class Range
    extends java.lang.Object
    A range.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      double lower
      the lower value of range
      double upper
      the upper value of range
    • Constructor Summary

      Constructors 
      Constructor Description
      Range​(double start, double end)
      Constructor.
      Range​(Range range)
      Constructor.
    • 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

      • lower

        public double lower
        the lower value of range
      • upper

        public double upper
        the upper value of range
    • Constructor Detail

      • Range

        public Range​(double start,
                     double end)
        Constructor.
        Parameters:
        start - the start value of range
        end - the end value of range
      • Range

        public Range​(Range range)
        Constructor.
        Parameters:
        range - the range
    • Method Detail

      • toString

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