Uses of Class
com.vaadin.flow.signals.shared.SharedNodeSignal
Packages that use SharedNodeSignal
-
Uses of SharedNodeSignal in com.vaadin.flow.signals.impl
Methods in com.vaadin.flow.signals.impl that return SharedNodeSignal -
Uses of SharedNodeSignal in com.vaadin.flow.signals.shared
Methods in com.vaadin.flow.signals.shared that return SharedNodeSignalModifier and TypeMethodDescriptionprotected SharedNodeSignalAbstractSignal.asNode()Converts this signal into a node signal.SharedListSignal.asNode()SharedMapSignal.asNode()SharedValueSignal.asNode()SharedNodeSignal.asReadonly()Wraps this signal to not accept changes.@Nullable SharedNodeSignalSharedNodeSignal.SharedNodeSignalState.parent()Gets the parent node of this signal.SharedNodeSignal.withValidator(CommandValidator validator) Wraps this signal with a validator.Methods in com.vaadin.flow.signals.shared that return types with arguments of type SharedNodeSignalModifier and TypeMethodDescriptionSharedNodeSignal.insertChild(SharedListSignal.ListPosition at) Inserts a new node with no value as a list node at the given list position.SharedNodeSignal.insertChildWithValue(@Nullable Object value, SharedListSignal.ListPosition at) Inserts a new node with the given value as a list node at the given list position.SharedNodeSignal.SharedNodeSignalState.listChildren()Gets a list with the children accessed by order.SharedNodeSignal.SharedNodeSignalState.mapChildren()Gets a map of the children accessed by key.SharedNodeSignal.putChildIfAbsent(String key) Creates a new node with no value if a map node with the given key doesn't already exist.Methods in com.vaadin.flow.signals.shared with parameters of type SharedNodeSignalModifier and TypeMethodDescriptionSharedNodeSignal.removeChild(SharedNodeSignal child) Removes the given child from this node.Constructors in com.vaadin.flow.signals.shared with parameters of type SharedNodeSignalModifierConstructorDescriptionSharedNodeSignalState(@Nullable tools.jackson.databind.JsonNode value, @Nullable SharedNodeSignal parent, List<SharedNodeSignal> listChildren, Map<String, SharedNodeSignal> mapChildren) Creates a new state snapshot based on the given JSON value, list children and map children.Constructor parameters in com.vaadin.flow.signals.shared with type arguments of type SharedNodeSignalModifierConstructorDescriptionSharedNodeSignalState(@Nullable tools.jackson.databind.JsonNode value, @Nullable SharedNodeSignal parent, List<SharedNodeSignal> listChildren, Map<String, SharedNodeSignal> mapChildren) Creates a new state snapshot based on the given JSON value, list children and map children.SharedNodeSignalState(@Nullable tools.jackson.databind.JsonNode value, @Nullable SharedNodeSignal parent, List<SharedNodeSignal> listChildren, Map<String, SharedNodeSignal> mapChildren) Creates a new state snapshot based on the given JSON value, list children and map children.