Class Components.Range<R extends java.lang.Number>

  • Type Parameters:
    R - Type of range
    All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    Components.RangeWithUnit
    Enclosing class:
    Components

    public static class Components.Range<R extends java.lang.Number>
    extends java.lang.Object
    implements java.io.Serializable
    A Range of values, with a low and a high. Values must be numeric. (ex, Integer, Long, Double)
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.Integer decimals
      Decimal places for value within the range.
      R high
      Maximum value of the range.
      R low
      Minimum value of the range.
    • Constructor Summary

      Constructors 
      Constructor Description
      Range()  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • low

        public R extends java.lang.Number low
        Minimum value of the range.
      • high

        public R extends java.lang.Number high
        Maximum value of the range.
      • decimals

        public java.lang.Integer decimals
        Decimal places for value within the range.
    • Constructor Detail

      • Range

        public Range()