Uses of Class
com.google.gwt.validation.client.ConstraintValidator

Packages that use ConstraintValidator
com.google.gwt.validation.client   
 

Uses of ConstraintValidator in com.google.gwt.validation.client
 

Classes in com.google.gwt.validation.client with annotations of type ConstraintValidator
 interface AssertFalse
          Assert that a method or field will be false when validated
 interface AssertTrue
          Assert that a method or field will be true when validated
 interface Email
          Asserts that the field or method is a string representing an email when validated.
 interface Future
          Assert that a method or field will be a date in the future when validated
 interface Length
          Asserts that the field or method will have a length between the minimum and maximum when validated.
 interface Max
          Asserts the maximum value of the field or method when validated
 interface Min
          Asserts what the minimum value of the field or method should be when validated.
 interface NotEmpty
          Asserts that the field or method is not empty when validated.
 interface NotNull
          Asserts that the given field or method is not null when validated.
 interface Past
          Assert that a method or field will be a date in the past when validated
 interface Pattern
          Asserts that the field or method matches the given regex pattern when validated.
 interface Range
          Asserts that the value contained by the field or method is between minimum and maximum when validated.
 interface Size
          Asserts that the field or method will have a (collection, array, or map) size between the minimum and maximum when validated.