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.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 Buffered.setWriteThrough(boolean writeThrough)
          Deprecated. Use Buffered.setBuffered(boolean) instead. Note that setReadThrough(true), setWriteThrough(true) equals setBuffered(false)
 void Validatable.validate()
           Checks the validity of the validatable.
 void Validator.validate(Object value)
          Checks the given value against this validator.
 

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

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

Methods in com.vaadin.data.validator that throw Validator.InvalidValueException
 void NullValidator.validate(Object value)
          Validates the data given in value.
 void IntegerValidator.validate(Object value)
          Deprecated.  
 void CompositeValidator.validate(Object value)
          Validates the given value.
 void DoubleValidator.validate(Object value)
          Deprecated.  
 void BeanValidator.validate(Object value)
           
 void AbstractValidator.validate(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 Form.setWriteThrough(boolean writeThrough)
          Deprecated.  
 void AbstractField.setWriteThrough(boolean writeThrough)
          Deprecated. Use AbstractField.setBuffered(boolean) instead. Note that setReadThrough(true), setWriteThrough(true) equals setBuffered(false)
 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-2011 Vaadin Ltd. All Rights Reserved.