Uses of Interface
com.vaadin.signals.function.SignalMapper
Packages that use SignalMapper
-
Uses of SignalMapper in com.vaadin.signals
Methods in com.vaadin.signals with parameters of type SignalMapperModifier and TypeMethodDescriptiondefault <C> Signal<C> Signal.map(SignalMapper<T, C> mapper) Creates a simple computed signal based on a mapper function that is passed the value of this signal.default <C> WritableSignal<C> WritableSignal.map(SignalMapper<T, C> getter, ValueMerger<T, C> merger) Creates a two-way mapped signal that provides a bidirectional view of this signal. -
Uses of SignalMapper in com.vaadin.signals.impl
Constructors in com.vaadin.signals.impl with parameters of type SignalMapperModifierConstructorDescriptionMappedModifySignal(ValueSignal<P> parent, SignalMapper<P, C> getter, SignalModifier<P, C> modifier) Creates a new mapped modify signal.MappedWritableSignal(WritableSignal<P> parent, SignalMapper<P, C> getter, ValueMerger<P, C> merger) Creates a new mapped writable signal. -
Uses of SignalMapper in com.vaadin.signals.local
Methods in com.vaadin.signals.local with parameters of type SignalMapperModifier and TypeMethodDescription<C> WritableSignal<C> ValueSignal.mapMutable(SignalMapper<T, C> getter, SignalModifier<T, C> modifier) Creates a two-way mapped signal that uses in-place modification for writing.