Packages

final class NumericConstraints[A] extends Serializable

Possible restrictions on the numeric value used. Needs an instance for Ordering to check whether values are valid w.r.t. to the properties.

Source
NumericConstraints.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NumericConstraints
  2. Serializable
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def equals(other: Any): Boolean
    Definition Classes
    NumericConstraints → AnyRef → Any
  2. val exclusiveMaximum: Option[Boolean]
  3. val exclusiveMinimum: Option[Boolean]
  4. def hashCode(): Int
    Definition Classes
    NumericConstraints → AnyRef → Any
  5. val maximum: Option[A]
  6. val minimum: Option[A]
  7. val multipleOf: Option[A]
  8. def satisfiedBy(value: A): Boolean

    Check whether the value satisfies all the constraints

  9. def toString(): String
    Definition Classes
    NumericConstraints → AnyRef → Any
  10. def withExclusiveMaximum(exclusiveMaximum: Option[Boolean]): NumericConstraints[A]
  11. def withExclusiveMinimum(exclusiveMinimum: Option[Boolean]): NumericConstraints[A]
  12. def withMaximum(maximum: Option[A]): NumericConstraints[A]
  13. def withMinimum(minimum: Option[A]): NumericConstraints[A]
  14. def withMultipleOf(multipleOf: Option[A]): NumericConstraints[A]