E - the element typepublic class ManagedList<E> extends ArrayList<E> implements Mergeable, BeanMetadataElement
modCount| Constructor and Description |
|---|
ManagedList() |
ManagedList(int initialCapacity) |
| Modifier and Type | Method and Description |
|---|---|
String |
getElementTypeName()
Return the default element type name (class name) to be used for this list.
|
Object |
getSource()
Return the configuration source
Object for this metadata element
(may be null). |
boolean |
isMergeEnabled()
Is merging enabled for this particular instance?
|
List<E> |
merge(Object parent)
Merge the current value set with that of the supplied object.
|
static <E> ManagedList<E> |
of(E... elements)
Return a new instance containing an arbitrary number of elements.
|
void |
setElementTypeName(String elementTypeName)
Set the default element type name (class name) to be used for this list.
|
void |
setMergeEnabled(boolean mergeEnabled)
Set whether merging should be enabled for this collection,
in case of a 'parent' collection value being present.
|
void |
setSource(Object source)
Set the configuration source
Object for this metadata element. |
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSizeequals, hashCodecontainsAll, toStringfinalize, getClass, notify, notifyAll, wait, wait, waitcontainsAll, equals, hashCodeparallelStream, streampublic ManagedList()
public ManagedList(int initialCapacity)
public static <E> ManagedList<E> of(E... elements)
E - the List's element typeelements - the elements to be contained in the listList containing the specified elementspublic void setSource(@Nullable
Object source)
Object for this metadata element.
The exact type of the object will depend on the configuration mechanism used.
@Nullable public Object getSource()
BeanMetadataElementObject for this metadata element
(may be null).getSource in interface BeanMetadataElementpublic void setElementTypeName(String elementTypeName)
@Nullable public String getElementTypeName()
public void setMergeEnabled(boolean mergeEnabled)
public boolean isMergeEnabled()
MergeableisMergeEnabled in interface Mergeable