Uses of Class
com.vaadin.flow.signals.local.ValueSignal
Packages that use ValueSignal
Package
Description
Trigger API and its internal wiring.
-
Uses of ValueSignal in com.vaadin.flow.component.internal
Methods in com.vaadin.flow.component.internal that return ValueSignalModifier and TypeMethodDescriptionUIInternals.getGeolocationAvailabilitySignal()Returns the reactive signal holding the geolocation availability for this UI. -
Uses of ValueSignal in com.vaadin.flow.component.trigger.internal
Constructors in com.vaadin.flow.component.trigger.internal with parameters of type ValueSignalModifierConstructorDescriptionSetSignalAction(ValueSignal<? super T> signal, Class<T> valueType, Action.Input<? extends T> source) Creates an action that, when the trigger fires, evaluatessourceon the client, sends the value to the server, decodes it asvalueType, and assigns it tosignalviaset(Object). -
Uses of ValueSignal in com.vaadin.flow.signals.local
Methods in com.vaadin.flow.signals.local that return ValueSignalModifier and TypeMethodDescriptionInserts a value at the given index in this list.ListSignal.insertFirst(T value) Inserts a value as the first entry in this list.ListSignal.insertLast(T value) Inserts a value as the last entry in this list.Methods in com.vaadin.flow.signals.local that return types with arguments of type ValueSignalModifier and TypeMethodDescriptionList<ValueSignal<T>> ListSignal.get()List<ValueSignal<T>> ListSignal.insertAllAt(int index, Collection<? extends T> values) Inserts all values at the given index in this list, preserving the order of the provided collection.List<ValueSignal<T>> ListSignal.insertAllFirst(Collection<? extends T> values) Inserts all values as the first entries in this list, preserving the order of the provided collection.List<ValueSignal<T>> ListSignal.insertAllLast(Collection<? extends T> values) Inserts all values as the last entries in this list.List<ValueSignal<T>> ListSignal.peek()Methods in com.vaadin.flow.signals.local with parameters of type ValueSignalModifier and TypeMethodDescriptionvoidListSignal.moveTo(ValueSignal<T> entry, int toIndex) Moves an existing entry to a new position in this list.voidListSignal.remove(ValueSignal<T> entry) Removes the given entry from this list.