Uses of Class
com.vaadin.data.Validator.InvalidValueException

Packages that use Validator.InvalidValueException
com.vaadin.data Contains interfaces for the data layer, mainly for binding typed data and data collections to components, and for validating data. 
com.vaadin.data.fieldgroup   
com.vaadin.data.validator   
com.vaadin.ui   
 

Uses of Validator.InvalidValueException in com.vaadin.data
 

Subclasses of Validator.InvalidValueException in com.vaadin.data
static class Validator.EmptyValueException
          A specific type of Validator.InvalidValueException that indicates that validation failed because the value was empty.
 

Methods in com.vaadin.data that return Validator.InvalidValueException
 Validator.InvalidValueException[] Validator.InvalidValueException.getCauses()
          Returns the InvalidValueExceptions that caused this exception.
 

Methods in com.vaadin.data that throw Validator.InvalidValueException
 void Buffered.commit()
          Updates all changes since the previous commit to the data source.
 void Validatable.validate()
           Checks the validity of the validatable.
 void Validator.validate(java.lang.Object value)
          Checks the given value against this validator.
 

Constructors in com.vaadin.data with parameters of type Validator.InvalidValueException
Validator.InvalidValueException(java.lang.String message, Validator.InvalidValueException... causes)
          Constructs a new InvalidValueException with a set of causing validation exceptions.
 

Uses of Validator.InvalidValueException in com.vaadin.data.fieldgroup
 

Subclasses of Validator.InvalidValueException in com.vaadin.data.fieldgroup
static class FieldGroup.FieldGroupInvalidValueException
          Exception which wraps InvalidValueExceptions from all invalid fields in a FieldGroup
 

Methods in com.vaadin.data.fieldgroup that return types with arguments of type Validator.InvalidValueException
 java.util.Map<Field<?>,Validator.InvalidValueException> FieldGroup.FieldGroupInvalidValueException.getInvalidFields()
          Returns a map containing fields which failed validation and the exceptions the corresponding validators threw.
 java.util.Map<Field<?>,Validator.InvalidValueException> FieldGroup.CommitException.getInvalidFields()
          Returns a map containing the fields which failed validation and the exceptions the corresponding validators threw.
 

Constructor parameters in com.vaadin.data.fieldgroup with type arguments of type Validator.InvalidValueException
FieldGroup.FieldGroupInvalidValueException(java.util.Map<Field<?>,Validator.InvalidValueException> invalidValueExceptions)
          Constructs a new exception with the specified validation exceptions.
 

Uses of Validator.InvalidValueException in com.vaadin.data.validator
 

Methods in com.vaadin.data.validator that throw Validator.InvalidValueException
 void DoubleValidator.validate(java.lang.Object value)
          Deprecated.  
 void BeanValidator.validate(java.lang.Object value)
           
 void IntegerValidator.validate(java.lang.Object value)
          Deprecated.  
 void CompositeValidator.validate(java.lang.Object value)
          Validates the given value.
 void NullValidator.validate(java.lang.Object value)
          Validates the data given in value.
 void AbstractValidator.validate(java.lang.Object value)
           
 

Uses of Validator.InvalidValueException in com.vaadin.ui
 

Subclasses of Validator.InvalidValueException in com.vaadin.ui
static class DateField.UnparsableDateString
           
 

Methods in com.vaadin.ui that throw Validator.InvalidValueException
 void Form.commit()
          Deprecated.  
 void AbstractField.commit()
           
protected  void AbstractField.setValue(T newFieldValue, boolean repaintIsNotNeeded)
          Sets the value of the field.
 void DateField.validate()
          Validates the current value against registered validators if the field is not empty.
 void Form.validate()
          Deprecated. Checks the validity of the Form and all of its fields.
 void AbstractField.validate()
          Checks the validity of the Field.
protected  void AbstractField.validate(T fieldValue)
          Validates that the given value pass the validators for the field.
 



Copyright © 2000-2014 Vaadin Ltd. All Rights Reserved.