Uses of Package
com.google.gwt.validation.client

Packages that use com.google.gwt.validation.client
com.google.gwt.validation.client   
com.google.gwt.validation.client.interfaces   
com.google.gwt.validation.rebind   
com.google.gwt.validation.server   
 

Classes in com.google.gwt.validation.client used by com.google.gwt.validation.client
AssertFalse
          Assert that a method or field will be false when validated
AssertTrue
          Assert that a method or field will be true when validated
ConstraintValidator
          Link between an constraint annotation and its constraint validation implementation
A given constraint annotation should be annotated by a @ValidatorClass annotation to refer to its constraint validation implementation
(Taken from JSR-303 example implementation in specification document.)
Email
          Asserts that the field or method is a string representing an email when validated.
Future
          Assert that a method or field will be a date in the future when validated
InvalidConstraint
          This class is for denoting instances where a particular object has failed the validation.
Length
          Asserts that the field or method will have a length between the minimum and maximum when validated.
Max
          Asserts the maximum value of the field or method when validated
Min
          Asserts what the minimum value of the field or method should be when validated.
NotEmpty
          Asserts that the field or method is not empty when validated.
NotNull
          Asserts that the given field or method is not null when validated.
Past
          Assert that a method or field will be a date in the past when validated
Pattern
          Asserts that the field or method matches the given regex pattern when validated.
Range
          Asserts that the value contained by the field or method is between minimum and maximum when validated.
Size
          Asserts that the field or method will have a (collection, array, or map) size between the minimum and maximum when validated.
 

Classes in com.google.gwt.validation.client used by com.google.gwt.validation.client.interfaces
InvalidConstraint
          This class is for denoting instances where a particular object has failed the validation.
 

Classes in com.google.gwt.validation.client used by com.google.gwt.validation.rebind
InvalidConstraint
          This class is for denoting instances where a particular object has failed the validation.
 

Classes in com.google.gwt.validation.client used by com.google.gwt.validation.server
AbstractValidator
          Wrapper for IValidator that contains utility methods for validation
InvalidConstraint
          This class is for denoting instances where a particular object has failed the validation.