bitlap.validation
Members list
Type members
Classlikes
Validates that the wrapped value passed is false
Validates that the wrapped value passed is false
Attributes
- Supertypes
-
trait ConstraintValidator[AssertFalse, IterableOnce[_]]class Objecttrait Matchableclass Any
Validates that the wrapped value passed is none
Validates that the wrapped value passed is none
Attributes
- Supertypes
-
trait ConstraintValidator[AssertNone, IterableOnce[_]]class Objecttrait Matchableclass Any
Validates that the wrapped value passed is some
Validates that the wrapped value passed is some
Attributes
- Supertypes
-
trait ConstraintValidator[AssertSome, IterableOnce[_]]class Objecttrait Matchableclass Any
Validates that the wrapped value passed is true
Validates that the wrapped value passed is true
Attributes
- Supertypes
-
trait ConstraintValidator[AssertTrue, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the length of a wrapped value is between min and max.
Check that the length of a wrapped value is between min and max.
Attributes
- Supertypes
-
trait ConstraintValidator[ByteSize, Any]class Objecttrait Matchableclass Any
Check that the wrapped character sequence (e.g. Option[String]) and the number being validated represents a number, and has a value less than or equal to the maximum value specified.
Check that the wrapped character sequence (e.g. Option[String]) and the number being validated represents a number, and has a value less than or equal to the maximum value specified.
Attributes
- Supertypes
-
trait ConstraintValidator[DecimalMax, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the wrapped character sequence (e.g. Option[String]) and the number being validated represents a number, and has a value more than or equal to the minimum value specified.
Check that the wrapped character sequence (e.g. Option[String]) and the number being validated represents a number, and has a value more than or equal to the minimum value specified.
Attributes
- Supertypes
-
trait ConstraintValidator[DecimalMin, IterableOnce[_]]class Objecttrait Matchableclass Any
Validates that the wrapped character sequence (e.g. Option[String]) being validated consists of digits.
Validates that the wrapped character sequence (e.g. Option[String]) being validated consists of digits.
Attributes
- Supertypes
-
trait ConstraintValidator[Digits, IterableOnce[_]]class Objecttrait Matchableclass Any
Checks that a given wrapped character sequence (e.g. Option[String]) is a valid EAN barcode.
Checks that a given wrapped character sequence (e.g. Option[String]) is a valid EAN barcode.
Attributes
- Supertypes
-
trait ConstraintValidator[EAN, IterableOnce[_]]class Objecttrait Matchableclass Any
Validates that the wrapped character sequence (e.g. Option[String]) being validated consists of email, and matches the regexp defined in the constraint.
Validates that the wrapped character sequence (e.g. Option[String]) being validated consists of email, and matches the regexp defined in the constraint.
Attributes
- Supertypes
-
trait ConstraintValidator[Email, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the wrapped Calendar, Date, Instant and JodaTime classes passed to be validated is in the future or in the present.
Check that the wrapped Calendar, Date, Instant and JodaTime classes passed to be validated is in the future or in the present.
Attributes
- Supertypes
-
trait HibernateConstraintValidator[FutureOrPresent, IterableOnce[_]]trait ConstraintValidator[FutureOrPresent, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the wrapped Calendar, Date, Instant and JodaTime classes passed to be validated is in the future.
Check that the wrapped Calendar, Date, Instant and JodaTime classes passed to be validated is in the future.
Attributes
- Supertypes
-
trait HibernateConstraintValidator[Future, IterableOnce[_]]trait ConstraintValidator[Future, IterableOnce[_]]class Objecttrait Matchableclass Any
Validator wrapper for scala.
Validator wrapper for scala.
Value parameters
- validator
-
delegate.
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
class ScalaValidator
Check that the wrapped character sequence length is between min and max.
Check that the wrapped character sequence length is between min and max.
Attributes
- Supertypes
-
trait ConstraintValidator[Length, IterableOnce[_]]class Objecttrait Matchableclass Any
Luhn algorithm checksum validator for scala.
Luhn algorithm checksum validator for scala.
http://en.wikipedia.org/wiki/Luhn_algorithm http://en.wikipedia.org/wiki/Check_digit
Attributes
- Supertypes
-
trait ConstraintValidator[LuhnCheck, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the wrapped character sequence (e.g. Option[String]) and the number being validated represents a number, and has a value less than or equal to the maximum value specified.
Check that the wrapped character sequence (e.g. Option[String]) and the number being validated represents a number, and has a value less than or equal to the maximum value specified.
Attributes
- Supertypes
-
trait ConstraintValidator[Max, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the wrapped character sequence (e.g. Option[String]) and the number being validated represents a number, and has a value more than or equal to the minimum value specified.
Check that the wrapped character sequence (e.g. Option[String]) and the number being validated represents a number, and has a value more than or equal to the minimum value specified.
Attributes
- Supertypes
-
trait ConstraintValidator[Min, IterableOnce[_]]class Objecttrait Matchableclass Any
Mod10 (Luhn algorithm implementation) Check validator for scala.
Mod10 (Luhn algorithm implementation) Check validator for scala.
http://en.wikipedia.org/wiki/Luhn_algorithm http://en.wikipedia.org/wiki/Check_digit
Attributes
- Supertypes
-
trait ConstraintValidator[Mod10Check, IterableOnce[_]]class Objecttrait Matchableclass Any
Mod11 Check Digit validator for scala.
Mod11 Check Digit validator for scala.
Attributes
- Supertypes
-
trait ConstraintValidator[Mod11Check, IterableOnce[_]]class Objecttrait Matchableclass Any
Validates that the wrapped value passed is a negative number or zero.
Validates that the wrapped value passed is a negative number or zero.
Attributes
- Supertypes
-
trait ConstraintValidator[NegativeOrZero, IterableOnce[_]]class Objecttrait Matchableclass Any
Validates that the wrapped value passed is a strictly negative number.
Validates that the wrapped value passed is a strictly negative number.
Attributes
- Supertypes
-
trait ConstraintValidator[Negative, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that a wrapped character sequence's (e.g. Option[String]) trimmed length is not empty.
Check that a wrapped character sequence's (e.g. Option[String]) trimmed length is not empty.
Attributes
- Supertypes
-
trait ConstraintValidator[NotBlank, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the wrapped CharSequence, Collection, Map, Array, Seq and Set classes passed to be validated is not empty or not null.
Check that the wrapped CharSequence, Collection, Map, Array, Seq and Set classes passed to be validated is not empty or not null.
Attributes
- Supertypes
-
trait ConstraintValidator[NotEmpty, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the wrapped Calendar, Date, Instant and JodaTime classes passed to be validated is in the past or in the present.
Check that the wrapped Calendar, Date, Instant and JodaTime classes passed to be validated is in the past or in the present.
Attributes
- Supertypes
-
trait HibernateConstraintValidator[PastOrPresent, IterableOnce[_]]trait ConstraintValidator[PastOrPresent, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the wrapped Calendar, Date, Instant and JodaTime classes passed to be validated is in the past.
Check that the wrapped Calendar, Date, Instant and JodaTime classes passed to be validated is in the past.
Attributes
- Supertypes
-
trait HibernateConstraintValidator[Past, IterableOnce[_]]trait ConstraintValidator[Past, IterableOnce[_]]class Objecttrait Matchableclass Any
Check the wrapped string.
Check the wrapped string.
Attributes
- Supertypes
-
trait ConstraintValidator[Pattern, IterableOnce[_]]class Objecttrait Matchableclass Any
Validates that the wrapped value passed is a positive number or zero.
Validates that the wrapped value passed is a positive number or zero.
Attributes
- Supertypes
-
trait ConstraintValidator[PositiveOrZero, IterableOnce[_]]class Objecttrait Matchableclass Any
Validates that the wrapped value passed is a strictly positive number.
Validates that the wrapped value passed is a strictly positive number.
Attributes
- Supertypes
-
trait ConstraintValidator[Positive, IterableOnce[_]]class Objecttrait Matchableclass Any
Attributes
- Supertypes
-
trait ClockProviderclass Objecttrait Matchableclass Any
Attributes
- Supertypes
-
trait GetterPropertySelectionStrategyclass Objecttrait Matchableclass Any
Attributes
- Supertypes
ValidatorFactory for scala.
ValidatorFactory for scala.
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Check that the length of a wrapped value is between min and max.
Check that the length of a wrapped value is between min and max.
Attributes
- Supertypes
-
trait ConstraintValidator[Size, Map[_, _]]class Objecttrait Matchableclass Any
Check that the length of a wrapped value is between min and max.
Check that the length of a wrapped value is between min and max.
Attributes
- Supertypes
-
trait ConstraintValidator[Size, IterableOnce[_]]class Objecttrait Matchableclass Any
Check that the length of a wrapped value is between min and max.
Check that the length of a wrapped value is between min and max.
Attributes
- Supertypes
-
trait ConstraintValidator[Size, Seq[_]]class Objecttrait Matchableclass Any
Check that the length of a wrapped value is between min and max.
Check that the length of a wrapped value is between min and max.
Attributes
- Supertypes
-
trait ConstraintValidator[Size, Set[_]]class Objecttrait Matchableclass Any
Validate that the wrapped character sequence (e.g. Option[String]) is a valid URL.
Validate that the wrapped character sequence (e.g. Option[String]) is a valid URL.
Attributes
- Supertypes
-
trait ConstraintValidator[URL, IterableOnce[_]]class Objecttrait Matchableclass Any
Attributes
- Supertypes
-
trait Producttrait Equalsclass RuntimeExceptionclass Exceptionclass Throwabletrait Serializableclass Objecttrait Matchableclass AnyShow all