mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-09 03:24:58 +00:00
(doc) Fix javadoc for 'startIndex' parameter of StringUtils.join() methods (#412)
This commit is contained in:
parent
fa9f1aae19
commit
353e06a8ac
@ -4142,7 +4142,7 @@ public static String join(final double[] array, final char separator) {
|
||||
* @param array the array of values to join together, may be null
|
||||
* @param separator the separator character to use
|
||||
* @param startIndex the first index to start joining from. It is
|
||||
* an error to pass in an end index past the end of the array
|
||||
* an error to pass in a start index past the end of the array
|
||||
* @param endIndex the index to stop joining from (exclusive). It is
|
||||
* an error to pass in an end index past the end of the array
|
||||
* @return the joined String, {@code null} if null array input
|
||||
@ -4191,7 +4191,7 @@ public static String join(final Object[] array, final char separator, final int
|
||||
* @param separator
|
||||
* the separator character to use
|
||||
* @param startIndex
|
||||
* the first index to start joining from. It is an error to pass in an end index past the end of the
|
||||
* the first index to start joining from. It is an error to pass in a start index past the end of the
|
||||
* array
|
||||
* @param endIndex
|
||||
* the index to stop joining from (exclusive). It is an error to pass in an end index past the end of
|
||||
@ -4240,7 +4240,7 @@ public static String join(final long[] array, final char separator, final int st
|
||||
* @param separator
|
||||
* the separator character to use
|
||||
* @param startIndex
|
||||
* the first index to start joining from. It is an error to pass in an end index past the end of the
|
||||
* the first index to start joining from. It is an error to pass in a start index past the end of the
|
||||
* array
|
||||
* @param endIndex
|
||||
* the index to stop joining from (exclusive). It is an error to pass in an end index past the end of
|
||||
@ -4289,7 +4289,7 @@ public static String join(final int[] array, final char separator, final int sta
|
||||
* @param separator
|
||||
* the separator character to use
|
||||
* @param startIndex
|
||||
* the first index to start joining from. It is an error to pass in an end index past the end of the
|
||||
* the first index to start joining from. It is an error to pass in a start index past the end of the
|
||||
* array
|
||||
* @param endIndex
|
||||
* the index to stop joining from (exclusive). It is an error to pass in an end index past the end of
|
||||
@ -4338,7 +4338,7 @@ public static String join(final byte[] array, final char separator, final int st
|
||||
* @param separator
|
||||
* the separator character to use
|
||||
* @param startIndex
|
||||
* the first index to start joining from. It is an error to pass in an end index past the end of the
|
||||
* the first index to start joining from. It is an error to pass in a start index past the end of the
|
||||
* array
|
||||
* @param endIndex
|
||||
* the index to stop joining from (exclusive). It is an error to pass in an end index past the end of
|
||||
@ -4387,7 +4387,7 @@ public static String join(final short[] array, final char separator, final int s
|
||||
* @param separator
|
||||
* the separator character to use
|
||||
* @param startIndex
|
||||
* the first index to start joining from. It is an error to pass in an end index past the end of the
|
||||
* the first index to start joining from. It is an error to pass in a start index past the end of the
|
||||
* array
|
||||
* @param endIndex
|
||||
* the index to stop joining from (exclusive). It is an error to pass in an end index past the end of
|
||||
@ -4436,7 +4436,7 @@ public static String join(final char[] array, final char separator, final int st
|
||||
* @param separator
|
||||
* the separator character to use
|
||||
* @param startIndex
|
||||
* the first index to start joining from. It is an error to pass in an end index past the end of the
|
||||
* the first index to start joining from. It is an error to pass in a start index past the end of the
|
||||
* array
|
||||
* @param endIndex
|
||||
* the index to stop joining from (exclusive). It is an error to pass in an end index past the end of
|
||||
@ -4485,7 +4485,7 @@ public static String join(final double[] array, final char separator, final int
|
||||
* @param separator
|
||||
* the separator character to use
|
||||
* @param startIndex
|
||||
* the first index to start joining from. It is an error to pass in an end index past the end of the
|
||||
* the first index to start joining from. It is an error to pass in a start index past the end of the
|
||||
* array
|
||||
* @param endIndex
|
||||
* the index to stop joining from (exclusive). It is an error to pass in an end index past the end of
|
||||
@ -4757,7 +4757,7 @@ public static String join(final Iterable<?> iterable, final String separator) {
|
||||
* @param list the {@code List} of values to join together, may be null
|
||||
* @param separator the separator character to use
|
||||
* @param startIndex the first index to start joining from. It is
|
||||
* an error to pass in an end index past the end of the list
|
||||
* an error to pass in a start index past the end of the list
|
||||
* @param endIndex the index to stop joining from (exclusive). It is
|
||||
* an error to pass in an end index past the end of the list
|
||||
* @return the joined String, {@code null} if null list input
|
||||
@ -4795,7 +4795,7 @@ public static String join(final List<?> list, final char separator, final int st
|
||||
* @param list the {@code List} of values to join together, may be null
|
||||
* @param separator the separator character to use
|
||||
* @param startIndex the first index to start joining from. It is
|
||||
* an error to pass in an end index past the end of the list
|
||||
* an error to pass in a start index past the end of the list
|
||||
* @param endIndex the index to stop joining from (exclusive). It is
|
||||
* an error to pass in an end index past the end of the list
|
||||
* @return the joined String, {@code null} if null list input
|
||||
|
Loading…
x
Reference in New Issue
Block a user