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

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

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

Methods in com.google.gwt.validation.client that return InvalidConstraint
protected
<X> InvalidConstraint<T>
AbstractValidator.unrollConstraint(T object, java.lang.String property, InvalidConstraint<X> insideConstraint)
          Turns an invalid constraint at a lower level to one at the proper higher level
 

Methods in com.google.gwt.validation.client that return types with arguments of type InvalidConstraint
abstract  java.util.Set<InvalidConstraint<T>> AbstractValidator.performValidation(T object, java.lang.String propertyName, java.util.ArrayList<java.lang.String> groups, java.util.HashSet<java.lang.String> processedGroups, java.util.HashSet<java.lang.String> processedObjects)
          Actual validation engine class that performs validation internally
protected  java.util.Set<InvalidConstraint<T>> AbstractValidator.prepareValidation(T object, java.lang.String propertyName, java.lang.Object inputValue, java.util.ArrayList<java.lang.String> groups)
          Group level validation performed for pre-processing of the engine.
protected
<X> java.util.Set<InvalidConstraint<T>>
AbstractValidator.unrollConstraintSet(T object, java.lang.String property, java.util.Set<InvalidConstraint<X>> insideConstraintSet)
          Uses unrollConstraint to unroll an entire set and return them as a set of invalid constraints and return them as a set of the type that corresponds to this validator.
 java.util.Set<InvalidConstraint<T>> AbstractValidator.validate(T object, java.lang.String... groups)
           
protected  java.util.Set<InvalidConstraint<T>> AbstractValidator.validateProperty(T object, java.lang.String propertyName, java.util.ArrayList<java.lang.String> groups)
          Validate the property like the interface but accept an array list instead of an array
 java.util.Set<InvalidConstraint<T>> AbstractValidator.validateProperty(T object, java.lang.String propertyName, java.lang.String... groups)
           
 

Methods in com.google.gwt.validation.client with parameters of type InvalidConstraint
protected
<X> InvalidConstraint<T>
AbstractValidator.unrollConstraint(T object, java.lang.String property, InvalidConstraint<X> insideConstraint)
          Turns an invalid constraint at a lower level to one at the proper higher level
 

Method parameters in com.google.gwt.validation.client with type arguments of type InvalidConstraint
protected
<X> java.util.Set<InvalidConstraint<T>>
AbstractValidator.unrollConstraintSet(T object, java.lang.String property, java.util.Set<InvalidConstraint<X>> insideConstraintSet)
          Uses unrollConstraint to unroll an entire set and return them as a set of invalid constraints and return them as a set of the type that corresponds to this validator.
 

Uses of InvalidConstraint in com.google.gwt.validation.client.interfaces
 

Methods in com.google.gwt.validation.client.interfaces that return types with arguments of type InvalidConstraint
 java.util.Set<InvalidConstraint<T>> IValidator.validate(T object, java.lang.String... groups)
          validate all constraints on object
 java.util.Set<InvalidConstraint<T>> IValidator.validateProperty(T object, java.lang.String propertyName, java.lang.String... groups)
          validate all constraints on propertyName property of object
 

Uses of InvalidConstraint in com.google.gwt.validation.rebind
 

Methods in com.google.gwt.validation.rebind that return InvalidConstraint
<T> InvalidConstraint<T>
ValidationPackage.buildInvalidConstraint(T object)
          Build an InvalidConstraint object that matches the annotation
 

Uses of InvalidConstraint in com.google.gwt.validation.server
 

Methods in com.google.gwt.validation.server that return types with arguments of type InvalidConstraint
 java.util.Set<InvalidConstraint<T>> ServerValidator.performValidation(T object, java.lang.String propertyName, java.util.ArrayList<java.lang.String> groups, java.util.HashSet<java.lang.String> processedGroups, java.util.HashSet<java.lang.String> processedObjects)