Uses of Interface
com.vaadin.flow.data.binder.ErrorMessageProvider
Packages that use ErrorMessageProvider
-
Uses of ErrorMessageProvider in com.vaadin.flow.data.binder
Methods in com.vaadin.flow.data.binder with parameters of type ErrorMessageProviderModifier and TypeMethodDescriptionBinder.BindingBuilder.asRequired
(ErrorMessageProvider errorMessageProvider) Sets the field to be required.Binder.BindingBuilderImpl.asRequired
(ErrorMessageProvider errorMessageProvider) static <T> Validator<T>
Validator.from
(SerializablePredicate<T> guard, ErrorMessageProvider errorMessageProvider) Builds a validator out of a conditional function and an error message provider.static <T> Validator<T>
Validator.from
(SerializablePredicate<T> guard, ErrorMessageProvider errorMessageProvider, ErrorLevel errorLevel) Builds a validator out of a conditional function and an error message provider.default Binder.BindingBuilder<BEAN,
TARGET> Binder.BindingBuilder.withValidator
(SerializablePredicate<? super TARGET> predicate, ErrorMessageProvider errorMessageProvider) A convenience method to add a validator to this binding using theValidator.from(SerializablePredicate, ErrorMessageProvider)
factory method.default Binder.BindingBuilder<BEAN,
TARGET> Binder.BindingBuilder.withValidator
(SerializablePredicate<? super TARGET> predicate, ErrorMessageProvider errorMessageProvider, ErrorLevel errorLevel) A convenience method to add a validator to this binding using theValidator.from(SerializablePredicate, ErrorMessageProvider, ErrorLevel)
factory method.Binder.withValidator
(SerializablePredicate<BEAN> predicate, ErrorMessageProvider errorMessageProvider) A convenience method to add a validator to this binder using theValidator.from(SerializablePredicate, ErrorMessageProvider)
factory method. -
Uses of ErrorMessageProvider in com.vaadin.flow.data.converter
Constructors in com.vaadin.flow.data.converter with parameters of type ErrorMessageProviderModifierConstructorDescriptionprotected
AbstractStringToNumberConverter
(T emptyValue, ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given presentation value for empty string and error message provider.StringToBigDecimalConverter
(ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given error message provider.StringToBigDecimalConverter
(BigDecimal emptyValue, ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given presentation value for empty string and error message provider.StringToBigIntegerConverter
(ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given error message provider.StringToBigIntegerConverter
(BigInteger emptyValue, ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given presentation value for empty string and error message provider.StringToBooleanConverter
(ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given error message provider.StringToBooleanConverter
(String trueString, String falseString, ErrorMessageProvider errorMessageProvider) Creates converter with custom string representation.StringToDoubleConverter
(ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given error message provider.StringToDoubleConverter
(Double emptyValue, ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given presentation value for empty string and error message provider.StringToFloatConverter
(ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given error message provider.StringToFloatConverter
(Float emptyValue, ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given presentation value for empty string and error message provider.StringToIntegerConverter
(ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given error message provider.StringToIntegerConverter
(Integer emptyValue, ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given presentation value for empty string and error message provider.StringToLongConverter
(ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given error message provider.StringToLongConverter
(Long emptyValue, ErrorMessageProvider errorMessageProvider) Creates a new converter instance with the given presentation value for empty string and error message provider.StringToUuidConverter
(ErrorMessageProvider errorMessageProvider) Constructs a new converter instance with the given error message provider.