Uses of Class
com.vaadin.data.Validator.InvalidValueException
-
Packages that use Validator.InvalidValueException Package Description 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 Modifier and Type Class Description static classValidator.EmptyValueExceptionA specific type ofValidator.InvalidValueExceptionthat indicates that validation failed because the value was empty.Methods in com.vaadin.data that return Validator.InvalidValueException Modifier and Type Method Description Validator.InvalidValueException[]Validator.InvalidValueException. getCauses()Returns theInvalidValueExceptionsthat caused this exception.Methods in com.vaadin.data that throw Validator.InvalidValueException Modifier and Type Method Description voidBuffered. commit()Updates all changes since the previous commit to the data source.voidValidatable. validate()Checks the validity of the validatable.voidValidator. validate(Object value)Checks the given value against this validator.Constructors in com.vaadin.data with parameters of type Validator.InvalidValueException Constructor Description InvalidValueException(String message, Validator.InvalidValueException... causes)Constructs a newInvalidValueExceptionwith a set of causing validation exceptions. -
Uses of Validator.InvalidValueException in com.vaadin.data.fieldgroup
Subclasses of Validator.InvalidValueException in com.vaadin.data.fieldgroup Modifier and Type Class Description static classFieldGroup.FieldGroupInvalidValueExceptionException which wraps InvalidValueExceptions from all invalid fields in a FieldGroupMethods in com.vaadin.data.fieldgroup that return types with arguments of type Validator.InvalidValueException Modifier and Type Method Description Map<Field<?>,Validator.InvalidValueException>FieldGroup.CommitException. getInvalidFields()Returns a map containing the fields which failed validation and the exceptions the corresponding validators threw.Map<Field<?>,Validator.InvalidValueException>FieldGroup.FieldGroupInvalidValueException. getInvalidFields()Returns a map containing 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 Constructor Description FieldGroupInvalidValueException(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 Modifier and Type Method Description voidAbstractValidator. validate(Object value)voidBeanValidator. validate(Object value)voidCompositeValidator. validate(Object value)Validates the given value.voidDoubleValidator. validate(Object value)Deprecated.voidIntegerValidator. validate(Object value)Deprecated.voidNullValidator. validate(Object value)Validates the data given in value. -
Uses of Validator.InvalidValueException in com.vaadin.ui
Subclasses of Validator.InvalidValueException in com.vaadin.ui Modifier and Type Class Description static classDateField.UnparsableDateStringMethods in com.vaadin.ui that throw Validator.InvalidValueException Modifier and Type Method Description voidAbstractField. commit()voidForm. commit()Deprecated.protected voidAbstractField. setValue(T newFieldValue, boolean repaintIsNotNeeded, boolean ignoreReadOnly)Sets the value of the field.protected voidAbstractSelect. setValue(Object newFieldValue, boolean repaintIsNotNeeded, boolean ignoreReadOnly)Sets the visible value of the property.voidAbstractField. validate()Checks the validity of the Field.protected voidAbstractField. validate(T fieldValue)Validates that the given value pass the validators for the field.voidDateField. validate()Validates the current value against registered validators if the field is not empty.voidForm. validate()Deprecated.Checks the validity of the Form and all of its fields.
-