Interface FluentKeyNotifier<C extends com.vaadin.flow.component.Component & com.vaadin.flow.component.KeyNotifier,F extends FluentKeyNotifier<C,F>>

All Superinterfaces:
FluentHasElement<C,F>, Serializable, com.vaadin.flow.function.SerializableSupplier<C>, Supplier<C>
All Known Implementing Classes:
FluentAbstractNumberField, FluentBigDecimalField, FluentEmailField, FluentIntegerField, FluentNumberField, FluentPasswordField, FluentTextArea, FluentTextField

public interface FluentKeyNotifier<C extends com.vaadin.flow.component.Component & com.vaadin.flow.component.KeyNotifier,F extends FluentKeyNotifier<C,F>> extends FluentHasElement<C,F>
  • Method Summary

    Modifier and Type
    Method
    Description
    default F
    onKeyDown(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener)
     
    default F
    onKeyDown(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)
     
    default F
    onKeyPress(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener)
     
    default F
    onKeyPress(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)
     
    default F
    onKeyUp(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener)
     
    default F
    onKeyUp(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)
     

    Methods inherited from interface de.codecamp.vaadin.flowdui.fluent.FluentHasElement

    applyToElement, getElement

    Methods inherited from interface java.util.function.Supplier

    get
  • Method Details

    • onKeyDown

      default F onKeyDown(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener)
    • onKeyDown

      default F onKeyDown(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyDownEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)
    • onKeyUp

      default F onKeyUp(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener)
    • onKeyUp

      default F onKeyUp(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyUpEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)
    • onKeyPress

      default F onKeyPress(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener)
    • onKeyPress

      default F onKeyPress(com.vaadin.flow.component.Key key, com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.KeyPressEvent> listener, com.vaadin.flow.component.KeyModifier... modifiers)