Uses of Record Class
com.vaadin.signals.ListSignal.ListPosition
Packages that use ListSignal.ListPosition
-
Uses of ListSignal.ListPosition in com.vaadin.signals
Methods in com.vaadin.signals that return ListSignal.ListPositionModifier and TypeMethodDescriptionstatic 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 ListSignal.ListPositionListSignal.ListPosition.first()Gets the insertion position that corresponds to the beginning of the list.static ListSignal.ListPositionListSignal.ListPosition.last()Gets the insertion position that corresponds to the end of the list.SignalCommand.AdoptAtCommand.position()Returns the value of thepositionrecord component.SignalCommand.InsertCommand.position()Returns the value of thepositionrecord component.SignalCommand.PositionCondition.position()Returns the value of thepositionrecord component.Methods in com.vaadin.signals with parameters of type ListSignal.ListPositionModifier and TypeMethodDescriptionNodeSignal.adoptAt(AbstractSignal<?> node, ListSignal.ListPosition at) Adopts the given node as a list child at the given location.ListSignal.insertAt(T value, ListSignal.ListPosition at) Inserts a value at the given position in this list.NodeSignal.insertChild(ListSignal.ListPosition at) Inserts a new node with no value as a list node at the given list position.NodeSignal.insertChildWithValue(Object value, ListSignal.ListPosition at) Inserts a new node with the given value as a list node at the given list position.ListSignal.moveTo(AbstractSignal<T> child, ListSignal.ListPosition to) Moves the given child signal to the given position in this list.ListSignal.verifyPosition(AbstractSignal<?> child, ListSignal.ListPosition expectedPosition) Checks that the given child is at the given position in this list.Constructors in com.vaadin.signals with parameters of type ListSignal.ListPositionModifierConstructorDescriptionAdoptAtCommand(Id commandId, Id targetNodeId, Id childId, ListSignal.ListPosition position) Creates an instance of aAdoptAtCommandrecord class.InsertCommand(Id commandId, Id targetNodeId, Id scopeOwner, tools.jackson.databind.JsonNode value, ListSignal.ListPosition position) Creates an instance of aInsertCommandrecord class.PositionCondition(Id commandId, Id targetNodeId, Id childId, ListSignal.ListPosition position) Creates an instance of aPositionConditionrecord class.