Uses of Class
com.vaadin.flow.dom.DebouncePhase
-
Packages that use DebouncePhase Package Description com.vaadin.flow.component com.vaadin.flow.dom -
-
Uses of DebouncePhase in com.vaadin.flow.component
Methods in com.vaadin.flow.component that return DebouncePhase Modifier and Type Method Description DebouncePhase[]
phases()
Gets an array of debounce phases for which the event should be sent to the server. -
Uses of DebouncePhase in com.vaadin.flow.dom
Methods in com.vaadin.flow.dom that return DebouncePhase Modifier and Type Method Description static DebouncePhase
DebouncePhase. forIdentifier(String identifier)
Gets the phase that corresponds to the given identifier character.DebouncePhase
DomEvent. getPhase()
Gets the debounce phase for which this event is fired.static DebouncePhase
DebouncePhase. valueOf(String name)
Returns the enum constant of this type with the specified name.static DebouncePhase[]
DebouncePhase. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.vaadin.flow.dom that return types with arguments of type DebouncePhase Modifier and Type Method Description default Set<DebouncePhase>
DomListenerRegistration. getDebouncePhases()
Gets the debouncing phases for which this listener should be triggered.Methods in com.vaadin.flow.dom with parameters of type DebouncePhase Modifier and Type Method Description DomListenerRegistration
DomListenerRegistration. debounce(int timeout, DebouncePhase firstPhase, DebouncePhase... rest)
Configures the debouncing phases for which this listener should be triggered.
-