object Constraints extends Constraints
- Alphabetic
- By Inheritance
- Constraints
- Constraints
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- def emailAddress: Constraint[String]
Defines an ‘emailAddress’ constraint for
String
values which will validate email addresses.Defines an ‘emailAddress’ constraint for
String
values which will validate email addresses.name[constraint.email] error[error.email]
- Definition Classes
- Constraints
- def emailAddress(errorMessage: String = "error.email"): Constraint[String]
Defines an ‘emailAddress’ constraint for
String
values which will validate email addresses.Defines an ‘emailAddress’ constraint for
String
values which will validate email addresses.name[constraint.email] error[error.email]
- Definition Classes
- Constraints
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def max[T](maxValue: T, strict: Boolean = false, errorMessage: String = "error.max", strictErrorMessage: String = "error.max.strict")(implicit ordering: Ordering[T]): Constraint[T]
Defines a maximum value for
Ordered
values, by default the value must be less than or equal to the constraint parameterDefines a maximum value for
Ordered
values, by default the value must be less than or equal to the constraint parametername[constraint.max(maxValue)] error[error.max(maxValue)] or [error.max.strict(maxValue)]
- Definition Classes
- Constraints
- def maxLength(length: Int, errorMessage: String = "error.maxLength"): Constraint[String]
Defines a maximum length constraint for
String
values, i.e.Defines a maximum length constraint for
String
values, i.e. the string’s length must be less than or equal to the constraint parametername[constraint.maxLength(length)] error[error.maxLength(length)]
- Definition Classes
- Constraints
- def min[T](minValue: T, strict: Boolean = false, errorMessage: String = "error.min", strictErrorMessage: String = "error.min.strict")(implicit ordering: Ordering[T]): Constraint[T]
Defines a minimum value for
Ordered
values, by default the value must be greater than or equal to the constraint parameterDefines a minimum value for
Ordered
values, by default the value must be greater than or equal to the constraint parametername[constraint.min(minValue)] error[error.min(minValue)] or [error.min.strict(minValue)]
- Definition Classes
- Constraints
- def minLength(length: Int, errorMessage: String = "error.minLength"): Constraint[String]
Defines a minimum length constraint for
String
values, i.e.Defines a minimum length constraint for
String
values, i.e. the string’s length must be greater than or equal to the constraint parametername[constraint.minLength(length)] error[error.minLength(length)]
- Definition Classes
- Constraints
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nonEmpty: Constraint[String]
Defines a ‘required’ constraint for
String
values, i.e.Defines a ‘required’ constraint for
String
values, i.e. one in which empty strings are invalid.name[constraint.required] error[error.required]
- Definition Classes
- Constraints
- def nonEmpty(errorMessage: String = "error.required"): Constraint[String]
Defines a ‘required’ constraint for
String
values, i.e.Defines a ‘required’ constraint for
String
values, i.e. one in which empty strings are invalid.name[constraint.required] error[error.required]
- Definition Classes
- Constraints
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
- def pattern(regex: => Regex, name: String = "constraint.pattern", error: String = "error.pattern"): Constraint[String]
Defines a regular expression constraint for
String
values, i.e.Defines a regular expression constraint for
String
values, i.e. the string must match the regular expression patternname[constraint.pattern(regex)] or defined by the name parameter. error[error.pattern(regex)] or defined by the error parameter.
- Definition Classes
- Constraints
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)