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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturn the default element type name (class name) to be used for this set.Return the configuration sourceObjectfor this metadata element (may benull).booleanIs 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.voidsetElementTypeName(String elementTypeName) Set the default element type name (class name) to be used for this set.voidsetMergeEnabled(boolean mergeEnabled) Set whether merging should be enabled for this collection, in case of a 'parent' collection value being present.voidSet the configuration sourceObjectfor this metadata element.Methods inherited from class java.util.LinkedHashSet
spliteratorMethods inherited from class java.util.HashSet
add, clear, clone, contains, isEmpty, iterator, remove, size, toArray, toArrayMethods inherited from class java.util.AbstractSet
equals, hashCode, removeAllMethods inherited from class java.util.AbstractCollection
addAll, containsAll, retainAll, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods 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
ManagedSetcontaining the specified elements - Since:
- 5.3.16
-
setSource
Set the configuration sourceObjectfor this metadata element.The exact type of the object will depend on the configuration mechanism used.
-
getSource
Description copied from interface:BeanMetadataElementReturn the configuration sourceObjectfor this metadata element (may benull).- Specified by:
getSourcein 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:MergeableIs merging enabled for this particular instance?- Specified by:
isMergeEnabledin interfaceMergeable
-
merge
Description copied from interface:MergeableMerge 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.
-