com.vaadin.flow.internal.nodefeature.
Class SerializableNodeList<T extends Serializable>
java.lang.Object
com.vaadin.flow.internal.nodefeature.NodeFeature
com.vaadin.flow.internal.nodefeature.NodeList<T>
com.vaadin.flow.internal.nodefeature.SerializableNodeList<T>
Type Parameters:
T
- the type of Serializable objects this list contains
All Implemented Interfaces:
Direct Known Subclasses:
A list which contains Serializable
values but not StateNode
s.
For a NodeList
containing StateNode
s, use
StateNodeNodeList
.
For internal use only. May be renamed or removed in a future release.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.vaadin.flow.internal.nodefeature.NodeList
NodeList.SetView<T extends Serializable>
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Creates a new list for the given node.
-
Method Summary
Methods inherited from class com.vaadin.flow.internal.nodefeature.NodeList
add, addAll, clear, collectChanges, forEachChild, generateChangesFromEmpty, get, getChangeTracker, indexOf, isNodeValues, iterator, onDetach, remove, size
Methods inherited from class com.vaadin.flow.internal.nodefeature.NodeFeature
allowsChanges, attachPotentialChild, detatchPotentialChild, getNode, onAttach
-
Constructor Details
-
SerializableNodeList
Creates a new list for the given node.
Parameters:
node
- the node that the list belongs to
-
-
Method Details
-
add
Description copied from class:
NodeList
Inserts an item at the given index of the list.
Overrides:
add
in classNodeList<T extends Serializable>
Parameters:
index
- index to insert atitem
- the item to insert
-