Uses of Class
com.vaadin.signals.AbstractSignal
Packages that use AbstractSignal
-
Uses of AbstractSignal in com.vaadin.hilla.signals.internal
Constructors in com.vaadin.hilla.signals.internal with parameters of type AbstractSignalModifierConstructorDescriptionInternalSignal(AbstractSignal<?> signal, tools.jackson.databind.ObjectMapper objectMapper) -
Uses of AbstractSignal in com.vaadin.signals
Subclasses of AbstractSignal in com.vaadin.signalsModifier and TypeClassDescriptionclassListSignal<T>A signal containing a list of values.classMapSignal<T>A signal containing a map of values with string keys.classA signal representing a node in a tree structure.classA signal containing a numeric value.classValueSignal<T>A signal containing a value.Methods in com.vaadin.signals with type parameters of type AbstractSignalModifier and TypeMethodDescriptionprotected <I extends AbstractSignal<?>>
InsertOperation<I> AbstractSignal.submitInsert(SignalCommand command, Function<Id, I> childFactory) Submits a command for this signal and creates and insert operation that is updated once the command result is confirmed.Methods in com.vaadin.signals with parameters of type AbstractSignalModifier and TypeMethodDescriptionNodeSignal.adoptAs(AbstractSignal<?> signal, String key) Adopts the given node as a map child with the given key.NodeSignal.adoptAt(AbstractSignal<?> node, ListSignal.ListPosition at) Adopts the given node as a list child at the given location.static ListSignal.ListPositionListSignal.ListPosition.after(AbstractSignal<?> after) Gets the insertion position immediately after the given signal.static ListSignal.ListPositionListSignal.ListPosition.before(AbstractSignal<?> before) Gets the insertion position immediately before the given signal.static ListSignal.ListPositionListSignal.ListPosition.between(AbstractSignal<?> after, AbstractSignal<?> before) Gets the insertion position between the given signals, assuming those signals are currently adjacent.static booleanSignalUtils.isValid(AbstractSignal<?> signal, SignalCommand command) Checks whether the given command is considered valid by the validator instance of the provided signal.ListSignal.moveTo(AbstractSignal<T> child, ListSignal.ListPosition to) Moves the given child signal to the given position in this list.protected SignalOperation<Void> AbstractSignal.remove(AbstractSignal<?> child) Helper to submit a remove command.static SignalTreeSignalUtils.treeOf(AbstractSignal<?> signal) Returns the underlyingSignalTreeinstance of the given signal.ListSignal.verifyChild(AbstractSignal<?> child) Checks that the given signal is a child in this list.MapSignal.verifyKey(String key, AbstractSignal<?> expectedChild) Checks that the given child is mapped to the given key in this map.ListSignal.verifyPosition(AbstractSignal<?> child, ListSignal.ListPosition expectedPosition) Checks that the given child is at the given position in this list. -
Uses of AbstractSignal in com.vaadin.signals.impl
Subclasses of AbstractSignal in com.vaadin.signals.implModifier and TypeClassDescriptionclassA signal with a value that is computed based on the value of other signals.