Javadoc - methods renamed
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1300075 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
028f528194
commit
0a67f04278
|
@ -175,7 +175,7 @@ public class BufferUtils {
|
|||
* method, as it is a backdoor for adding untransformed objects.
|
||||
* <p>
|
||||
* Existing entries in the specified buffer will not be transformed.
|
||||
* If you want that behaviour, see {@link TransformedBuffer#decorateTransform}.
|
||||
* If you want that behaviour, see {@link TransformedBuffer#transformedBuffer}.
|
||||
*
|
||||
* @param buffer the buffer to predicate, must not be null
|
||||
* @param transformer the transformer for the buffer, must not be null
|
||||
|
|
|
@ -1311,7 +1311,7 @@ public class CollectionUtils {
|
|||
* method, as it is a backdoor for adding untransformed objects.
|
||||
* <p>
|
||||
* Existing entries in the specified collection will not be transformed.
|
||||
* If you want that behaviour, see {@link TransformedCollection#decorateTransform}.
|
||||
* If you want that behaviour, see {@link TransformedCollection#transformedCollection}.
|
||||
*
|
||||
* @param collection the collection to predicate, must not be null
|
||||
* @param transformer the transformer for the collection, must not be null
|
||||
|
|
|
@ -344,7 +344,7 @@ public class ListUtils {
|
|||
* method, as it is a backdoor for adding untransformed objects.
|
||||
* <p>
|
||||
* Existing entries in the specified list will not be transformed.
|
||||
* If you want that behaviour, see {@link TransformedList#decorateTransform}.
|
||||
* If you want that behaviour, see {@link TransformedList#transformedList}.
|
||||
*
|
||||
* @param list the list to predicate, must not be null
|
||||
* @param transformer the transformer for the list, must not be null
|
||||
|
|
|
@ -1266,7 +1266,7 @@ public class MapUtils {
|
|||
* This method returns a new map (decorating the specified map) that
|
||||
* will transform any new entries added to it.
|
||||
* Existing entries in the specified map will not be transformed.
|
||||
* If you want that behaviour, see {@link TransformedMap#decorateTransform}.
|
||||
* If you want that behaviour, see {@link TransformedMap#transformedMap}.
|
||||
* <p>
|
||||
* Each object is passed through the transformers as it is added to the
|
||||
* Map. It is important not to use the original map after invoking this
|
||||
|
@ -1498,7 +1498,7 @@ public class MapUtils {
|
|||
* This method returns a new sorted map (decorating the specified map) that
|
||||
* will transform any new entries added to it.
|
||||
* Existing entries in the specified map will not be transformed.
|
||||
* If you want that behaviour, see {@link TransformedSortedMap#decorateTransform}.
|
||||
* If you want that behaviour, see {@link TransformedSortedMap#transformedSortedMap}.
|
||||
* <p>
|
||||
* Each object is passed through the transformers as it is added to the
|
||||
* Map. It is important not to use the original map after invoking this
|
||||
|
|
|
@ -215,7 +215,7 @@ public class SetUtils {
|
|||
* method, as it is a backdoor for adding untransformed objects.
|
||||
* <p>
|
||||
* Existing entries in the specified set will not be transformed.
|
||||
* If you want that behaviour, see {@link TransformedSet#decorateTransform}.
|
||||
* If you want that behaviour, see {@link TransformedSet#transformedSet}.
|
||||
*
|
||||
* @param set the set to transform, must not be null
|
||||
* @param transformer the transformer for the set, must not be null
|
||||
|
@ -306,7 +306,7 @@ public class SetUtils {
|
|||
* method, as it is a backdoor for adding untransformed objects.
|
||||
* <p>
|
||||
* Existing entries in the specified set will not be transformed.
|
||||
* If you want that behaviour, see {@link TransformedSortedSet#decorateTransform}.
|
||||
* If you want that behaviour, see {@link TransformedSortedSet#transformedSortedSet}.
|
||||
*
|
||||
* @param set the set to transform, must not be null
|
||||
* @param transformer the transformer for the set, must not be null
|
||||
|
|
Loading…
Reference in New Issue