Uses of Interface
com.dlsc.formsfx.model.validators.Validator
| Package | Description |
|---|---|
| com.dlsc.formsfx.model.structure | |
| com.dlsc.formsfx.model.validators |
-
Uses of Validator in com.dlsc.formsfx.model.structure
Fields in com.dlsc.formsfx.model.structure with type parameters of type Validator Modifier and Type Field Description protected List<Validator<V>>DataField. validatorsEvery field contains a list of validators.protected List<Validator<javafx.collections.ObservableList<V>>>MultiSelectionField. validatorsEvery field contains a list of validators.protected List<Validator<V>>SingleSelectionField. validatorsEvery field contains a list of validators.Methods in com.dlsc.formsfx.model.structure with parameters of type Validator Modifier and Type Method Description FDataField. validate(Validator<V>... newValue)Sets the list of validators for the current field.MultiSelectionField<V>MultiSelectionField. validate(Validator<javafx.collections.ObservableList<V>>... newValue)Sets the list of validators for the current field.SingleSelectionField<V>SingleSelectionField. validate(Validator<V>... newValue)Sets the list of validators for the current field. -
Uses of Validator in com.dlsc.formsfx.model.validators
Classes in com.dlsc.formsfx.model.validators that implement Validator Modifier and Type Class Description classCustomValidator<T>A custom validator implementation of the root validator.classDoubleRangeValidatorA DoubleRangeValidator checks if a double value is between a minimum and a maximum value.classIntegerRangeValidatorA IntegerRangeValidator checks if an integer value is between a minimum and a maximum value.classRegexValidatorA RegexValidator checks if a given input matches a regular expression.classSelectionLengthValidator<E>A SelectionLengthValidator checks if a selection list's length is between a minimum and a maximum value.classStringLengthValidatorA StringLengthValidator checks if a string value's length is between a minimum and a maximum value.