Package

com.tsukaby

bean_validation_scala

Permalink

package bean_validation_scala

Visibility
  1. Public
  2. All

Type Members

  1. class AssertFalseValidatorForOption extends ConstraintValidator[AssertFalse, Option[Boolean]]

    Permalink

    Validates that the wrapped value passed is false

  2. class AssertNone extends Annotation with Annotation with ClassfileAnnotation

    Permalink
  3. class AssertNoneValidator extends ConstraintValidator[AssertNone, Option[_]]

    Permalink

    Validates that the wrapped value passed is none

  4. class AssertSome extends Annotation with Annotation with ClassfileAnnotation

    Permalink
  5. class AssertSomeValidator extends ConstraintValidator[AssertSome, Option[_]]

    Permalink

    Validates that the wrapped value passed is some

  6. class AssertTrueValidatorForOption extends ConstraintValidator[AssertTrue, Option[Boolean]]

    Permalink

    Validates that the wrapped value passed is true

  7. class ByteSize extends Annotation with Annotation with ClassfileAnnotation

    Permalink
  8. class ByteSizeValidator extends ConstraintValidator[ByteSize, Any]

    Permalink

    Check that the length of a wrapped value is between min and max.

  9. class DecimalMaxValidatorForOption extends ConstraintValidator[DecimalMax, Option[_]]

    Permalink

    Check that the wrapped character sequence (e.g.

    Check that the wrapped character sequence (e.g. Option[String]) and the wrapped number being validated represents a number, and has a value less than or equal to the maximum value specified.

  10. class DecimalMinValidatorForOption extends ConstraintValidator[DecimalMin, Option[_]]

    Permalink

    Check that the wrapped character sequence (e.g.

    Check that the wrapped character sequence (e.g. Option[String]) and the wrapped number being validated is less than or equal to the maximum value specified.

  11. class DigitsValidatorForOption extends ConstraintValidator[Digits, Option[_]]

    Permalink

    Validates that the wrapped character sequence (e.g.

    Validates that the wrapped character sequence (e.g. Option[String]) being validated consists of digits, and matches the pattern defined in the constraint.

  12. class EANValidatorForOption extends ConstraintValidator[EAN, Option[_]]

    Permalink

    Checks that a given wrapped character sequence (e.g.

    Checks that a given wrapped character sequence (e.g. Option[String]) is a valid EAN barcode.

  13. class EmailValidatorForOption extends ConstraintValidator[Email, Option[_]]

    Permalink

    Validates that the wrapped character sequence (e.g.

    Validates that the wrapped character sequence (e.g. Option[String]) being validated consists of digits, and matches the pattern defined in the constraint.

  14. class FutureValidatorForOption extends ConstraintValidator[Future, Option[_]]

    Permalink

    Check that the wrapped Calendar, Date and JodaTime classes passed to be validated is in the future.

  15. class LengthValidatorForOption extends ConstraintValidator[Length, Option[_]]

    Permalink

    Check that the wrapped character sequence length is between min and max.

  16. class LuhnCheckValidatorForOption extends ConstraintValidator[LuhnCheck, Option[_]]

    Permalink

    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

  17. class MaxValidatorForOption extends ConstraintValidator[Max, Option[_]]

    Permalink

    Check that the wrapped character sequence (e.g.

    Check that the wrapped character sequence (e.g. Option[String]) and the number validated represents a number, and has a value less than or equal to the maximum value specified.

  18. class MinValidatorForOption extends ConstraintValidator[Min, Option[_]]

    Permalink

    Check that the wrapped character sequence (e.g.

    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.

  19. class Mod10CheckValidatorForOption extends ConstraintValidator[Mod10Check, Option[_]]

    Permalink

    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

  20. class Mod11CheckValidatorForOption extends ConstraintValidator[Mod11Check, Option[_]]

    Permalink

    Mod11 Check Digit validator for scala.

    Mod11 Check Digit validator for scala.

    http://en.wikipedia.org/wiki/Check_digit

  21. class NotBlankValidatorForOption extends ConstraintValidator[NotBlank, Option[_]]

    Permalink

    Check that a wrapped character sequence's (e.g.

    Check that a wrapped character sequence's (e.g. Option[String]) trimmed length is not empty.

  22. class PastValidatorForOption extends ConstraintValidator[Past, Option[_]]

    Permalink

    Check that the wrapped Calendar, Date and JodaTime classes passed to be validated is in the past.

  23. class PatternValidatorForOption extends ConstraintValidator[Pattern, Option[_]]

    Permalink

    Check the wrapped string.

  24. class SafeHtmlValidatorForOption extends ConstraintValidator[SafeHtml, Option[_]]

    Permalink

    Check the wrapped string.

  25. case class ScalaValidator(validator: Validator) extends Product with Serializable

    Permalink

    Validator wrapper for scala.

    Validator wrapper for scala.

    validator

    delegate.

  26. class SizeValidatorForOption extends ConstraintValidator[Size, Option[_]]

    Permalink

    Check that the length of a wrapped value is between min and max.

  27. class SizeValidatorForSeqLike extends ConstraintValidator[Size, SeqLike[_, _]]

    Permalink

    Check that the length of a wrapped value is between min and max.

  28. class URLValidatorForOption extends ConstraintValidator[URL, Option[_]]

    Permalink

    Validate that the wrapped character sequence (e.g.

    Validate that the wrapped character sequence (e.g. Option[String]) is a valid URL.

Value Members

  1. object ScalaValidatorFactory

    Permalink

    ValidatorFactory for scala.

Ungrouped