java.time.temporal

ValueRange

object ValueRange extends Serializable

Annotations
@SerialVersionUID( 7317881728594519368L )
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ValueRange
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. def of(minSmallest: Long, minLargest: Long, maxSmallest: Long, maxLargest: Long): ValueRange

    Obtains a fully variable value range.

    Obtains a fully variable value range.

    This factory obtains a range where both the minimum and maximum value may vary.

    minSmallest

    the smallest minimum value

    minLargest

    the largest minimum value

    maxSmallest

    the smallest maximum value

    maxLargest

    the largest maximum value

    returns

    the ValueRange for smallest min, largest min, smallest max, largest max, not null

    Exceptions thrown
    IllegalArgumentException

    if the smallest minimum is greater than the smallest maximum, or the smallest maximum is greater than the largest maximum or the largest minimum is greater than the largest maximum

  18. def of(min: Long, maxSmallest: Long, maxLargest: Long): ValueRange

    Obtains a variable value range.

    Obtains a variable value range.

    This factory obtains a range where the minimum value is fixed and the maximum value may vary. For example, the ISO day-of-month always starts at 1, but ends between 28 and 31.

    min

    the minimum value

    maxSmallest

    the smallest maximum value

    maxLargest

    the largest maximum value

    returns

    the ValueRange for min, smallest max, largest max, not null

    Exceptions thrown
    IllegalArgumentException

    if the minimum is greater than the smallest maximum, or the smallest maximum is greater than the largest maximum

  19. def of(min: Long, max: Long): ValueRange

    Obtains a fixed value range.

    Obtains a fixed value range.

    This factory obtains a range where the minimum and maximum values are fixed. For example, the ISO month-of-year always runs from 1 to 12.

    min

    the minimum value

    max

    the maximum value

    returns

    the ValueRange for min, max, not null

    Exceptions thrown
    IllegalArgumentException

    if the minimum is greater than the maximum

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped