mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-09 11:34:55 +00:00
Changing appendAll and appendWithSeparators methods to take Iterable instead of Collection. LANG-548 - part two, change Javadoc references
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@890336 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
62a047cc69
commit
a05e28d6e2
@ -18,7 +18,6 @@
|
|||||||
|
|
||||||
import java.io.Reader;
|
import java.io.Reader;
|
||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -1090,7 +1089,7 @@ public StrBuilder appendWithSeparators(Iterator<?> it, String separator) {
|
|||||||
* }
|
* }
|
||||||
* </pre>
|
* </pre>
|
||||||
* Note that for this simple example, you should use
|
* Note that for this simple example, you should use
|
||||||
* {@link #appendWithSeparators(Collection, String)}.
|
* {@link #appendWithSeparators(Iterable, String)}.
|
||||||
*
|
*
|
||||||
* @param separator the separator to use, null means no separator
|
* @param separator the separator to use, null means no separator
|
||||||
* @return this, to enable chaining
|
* @return this, to enable chaining
|
||||||
@ -1148,7 +1147,7 @@ public StrBuilder appendSeparator(String standard, String defaultIfEmpty) {
|
|||||||
* }
|
* }
|
||||||
* </pre>
|
* </pre>
|
||||||
* Note that for this simple example, you should use
|
* Note that for this simple example, you should use
|
||||||
* {@link #appendWithSeparators(Collection, String)}.
|
* {@link #appendWithSeparators(Iterable, String)}.
|
||||||
*
|
*
|
||||||
* @param separator the separator to use
|
* @param separator the separator to use
|
||||||
* @return this, to enable chaining
|
* @return this, to enable chaining
|
||||||
@ -1195,7 +1194,7 @@ public StrBuilder appendSeparator(char standard, char defaultIfEmpty) {
|
|||||||
* }
|
* }
|
||||||
* </pre>
|
* </pre>
|
||||||
* Note that for this simple example, you should use
|
* Note that for this simple example, you should use
|
||||||
* {@link #appendWithSeparators(Collection, String)}.
|
* {@link #appendWithSeparators(Iterable, String)}.
|
||||||
*
|
*
|
||||||
* @param separator the separator to use, null means no separator
|
* @param separator the separator to use, null means no separator
|
||||||
* @param loopIndex the loop index
|
* @param loopIndex the loop index
|
||||||
@ -1222,7 +1221,7 @@ public StrBuilder appendSeparator(String separator, int loopIndex) {
|
|||||||
* }
|
* }
|
||||||
* </pre>
|
* </pre>
|
||||||
* Note that for this simple example, you should use
|
* Note that for this simple example, you should use
|
||||||
* {@link #appendWithSeparators(Collection, String)}.
|
* {@link #appendWithSeparators(Iterable, String)}.
|
||||||
*
|
*
|
||||||
* @param separator the separator to use
|
* @param separator the separator to use
|
||||||
* @param loopIndex the loop index
|
* @param loopIndex the loop index
|
||||||
|
Loading…
x
Reference in New Issue
Block a user