Uses of Class
com.vaadin.shared.ui.ErrorLevel
-
Packages that use ErrorLevel Package Description com.vaadin.client com.vaadin.client.ui com.vaadin.client.ui.orderedlayout com.vaadin.data com.vaadin.server com.vaadin.shared com.vaadin.shared.ui com.vaadin.shared.ui.tabsheet -
-
Uses of ErrorLevel in com.vaadin.client
Methods in com.vaadin.client that return ErrorLevel Modifier and Type Method Description ErrorLevel
TooltipInfo. getErrorLevel()
Gets the error level.Methods in com.vaadin.client with parameters of type ErrorLevel Modifier and Type Method Description void
TooltipInfo. setErrorLevel(ErrorLevel errorLevel)
Sets the error level.static void
WidgetUtil.ErrorUtil. setErrorLevelStyle(com.google.gwt.dom.client.Element element, String prefix, ErrorLevel errorLevel)
Sets the error level style name for the given element and removes all previously applied error level style names.boolean
VCaption. updateCaptionWithoutOwner(String caption, boolean disabled, boolean hasDescription, boolean hasError, ErrorLevel errorLevel, String iconURL, String iconAltText)
Deprecated.void
VErrorMessage. updateErrorLevel(ErrorLevel errorLevel)
Sets the correct error level style name for the error message and removes all previous style names.Constructors in com.vaadin.client with parameters of type ErrorLevel Constructor Description TooltipInfo(String tooltip, ContentMode mode, String errorMessage, Object identifier, ErrorLevel errorLevel)
Constructs a new tooltip info instance.TooltipInfo(String tooltip, String errorMessage, Object identifier, ErrorLevel errorLevel)
Deprecated. -
Uses of ErrorLevel in com.vaadin.client.ui
Methods in com.vaadin.client.ui with parameters of type ErrorLevel Modifier and Type Method Description void
VFormLayout.ErrorFlag. updateError(String errorMessage, ErrorLevel errorLevel, boolean hideErrors)
void
VFormLayout.VFormLayoutTable. updateError(com.google.gwt.user.client.ui.Widget widget, String errorMessage, ErrorLevel errorLevel, boolean hideErrors)
-
Uses of ErrorLevel in com.vaadin.client.ui.orderedlayout
Methods in com.vaadin.client.ui.orderedlayout with parameters of type ErrorLevel Modifier and Type Method Description void
Slot. setCaption(String captionText, Icon icon, List<String> styles, String error, ErrorLevel errorLevel, boolean showError, boolean required, boolean enabled, boolean captionAsHtml)
Set the caption of the slot. -
Uses of ErrorLevel in com.vaadin.data
Methods in com.vaadin.data that return types with arguments of type ErrorLevel Modifier and Type Method Description Optional<ErrorLevel>
ValidationResult. getErrorLevel()
Returns optional error level for this validation result.Optional<ErrorLevel>
ValidationResult.SimpleValidationResult. getErrorLevel()
Methods in com.vaadin.data with parameters of type ErrorLevel Modifier and Type Method Description static ValidationResult
ValidationResult. create(String errorMessage, ErrorLevel errorLevel)
Creates the validation result with the givenerrorMessage
anderrorLevel
.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.static <T> Validator<T>
Validator. from(SerializablePredicate<T> guard, String errorMessage, ErrorLevel errorLevel)
Builds a validator out of a conditional function and an error message.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.default Binder.BindingBuilder<BEAN,TARGET>
Binder.BindingBuilder. withValidator(SerializablePredicate<? super TARGET> predicate, String message, ErrorLevel errorLevel)
A convenience method to add a validator to this binding using theValidator.from(SerializablePredicate, String, ErrorLevel)
factory method. -
Uses of ErrorLevel in com.vaadin.server
Fields in com.vaadin.server declared as ErrorLevel Modifier and Type Field Description static ErrorLevel
ErrorMessage. CRITICAL
Deprecated.As of 7.0, useCRITICAL
insteadstatic ErrorLevel
ErrorMessage. ERROR
Deprecated.As of 7.0, useERROR
insteadstatic ErrorLevel
ErrorMessage. INFORMATION
Deprecated.As of 7.0, useINFO
insteadstatic ErrorLevel
ErrorMessage. SYSTEMERROR
Deprecated.As of 7.0, useSYSTEM
insteadstatic ErrorLevel
ErrorMessage. WARNING
Deprecated.As of 7.0, useWARNING
insteadMethods in com.vaadin.server that return ErrorLevel Modifier and Type Method Description ErrorLevel
AbstractErrorMessage. getErrorLevel()
ErrorLevel
ErrorMessage. getErrorLevel()
Gets the errors level.Methods in com.vaadin.server with parameters of type ErrorLevel Modifier and Type Method Description void
AbstractErrorMessage. setErrorLevel(ErrorLevel level)
Constructors in com.vaadin.server with parameters of type ErrorLevel Constructor Description UserError(String message, AbstractErrorMessage.ContentMode contentMode, ErrorLevel errorLevel)
Creates an error message with level and content mode. -
Uses of ErrorLevel in com.vaadin.shared
Fields in com.vaadin.shared declared as ErrorLevel Modifier and Type Field Description ErrorLevel
AbstractComponentState. errorLevel
Level of error. -
Uses of ErrorLevel in com.vaadin.shared.ui
Methods in com.vaadin.shared.ui that return ErrorLevel Modifier and Type Method Description static ErrorLevel
ErrorLevel. valueOf(String name)
Returns the enum constant of this type with the specified name.static ErrorLevel[]
ErrorLevel. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ErrorLevel in com.vaadin.shared.ui.tabsheet
Fields in com.vaadin.shared.ui.tabsheet declared as ErrorLevel Modifier and Type Field Description ErrorLevel
TabState. componentErrorLevel
Represents the level of error on a tab.
-