Class ManagedSet<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<E>
java.util.HashSet<E>
java.util.LinkedHashSet<E>
org.springframework.beans.factory.support.ManagedSet<E>
- Type Parameters:
E
- the element type
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<E>
,Collection<E>
,Set<E>
,BeanMetadataElement
,Mergeable
Tag collection class used to hold managed Set values, which may
include runtime bean references (to be resolved into bean objects).
- Since:
- 21.01.2004
- Author:
- Juergen Hoeller, Rob Harrop, Stephane Nicoll, Sam Brannen
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the default element type name (class name) to be used for this set.Return the configuration sourceObject
for this metadata element (may benull
).boolean
Is merging enabled for this particular instance?Merge the current value set with that of the supplied object.static <E> ManagedSet<E>
of
(E... elements) Create 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 set.void
setMergeEnabled
(boolean mergeEnabled) Set whether merging should be enabled for this collection, in case of a 'parent' collection value being present.void
Set the configuration sourceObject
for this metadata element.Methods inherited from class java.util.LinkedHashSet
spliterator
Methods inherited from class java.util.HashSet
add, clear, clone, contains, isEmpty, iterator, remove, size, toArray, toArray
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, retainAll, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Constructor Details
-
ManagedSet
public ManagedSet() -
ManagedSet
public ManagedSet(int initialCapacity)
-
-
Method Details
-
of
Create a new instance containing an arbitrary number of elements.- Type Parameters:
E
- theSet
's element type- Parameters:
elements
- the elements to be contained in the set- Returns:
- a
ManagedSet
containing the specified elements - Since:
- 5.3.16
-
setSource
Set the configuration sourceObject
for this metadata element.The exact type of the object will depend on the configuration mechanism used.
-
getSource
Description copied from interface:BeanMetadataElement
Return the configuration sourceObject
for this metadata element (may benull
).- Specified by:
getSource
in interfaceBeanMetadataElement
-
setElementTypeName
Set the default element type name (class name) to be used for this set. -
getElementTypeName
Return the default element type name (class name) to be used for this set. -
setMergeEnabled
public void setMergeEnabled(boolean mergeEnabled) Set whether merging should be enabled for this collection, in case of a 'parent' collection value being present. -
isMergeEnabled
public boolean isMergeEnabled()Description copied from interface:Mergeable
Is merging enabled for this particular instance?- Specified by:
isMergeEnabled
in interfaceMergeable
-
merge
Description copied from interface:Mergeable
Merge the current value set with that of the supplied object.The supplied object is considered the parent, and values in the callee's value set must override those of the supplied object.
-