From 981744d8c6042c424a6dcf1f37b1ba93bf8edea6 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 13 Oct 2024 09:14:56 -0400 Subject: [PATCH] Javadoc --- .../java/org/apache/commons/lang3/ArrayFill.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/ArrayFill.java b/src/main/java/org/apache/commons/lang3/ArrayFill.java index 2efa1fc1d36..2d2acd5a451 100644 --- a/src/main/java/org/apache/commons/lang3/ArrayFill.java +++ b/src/main/java/org/apache/commons/lang3/ArrayFill.java @@ -27,7 +27,7 @@ public final class ArrayFill { /** - * Fills and returns the given array. + * Fills and returns the given array, assigning the given {@code byte} value to each element of the array. * * @param a the array to be filled (may be null). * @param val the value to be stored in all elements of the array. @@ -42,7 +42,7 @@ public static byte[] fill(final byte[] a, final byte val) { } /** - * Fills and returns the given array. + * Fills and returns the given array, assigning the given {@code char} value to each element of the array. * * @param a the array to be filled (may be null). * @param val the value to be stored in all elements of the array. @@ -57,7 +57,7 @@ public static char[] fill(final char[] a, final char val) { } /** - * Fills and returns the given array. + * Fills and returns the given array, assigning the given {@code double} value to each element of the array. * * @param a the array to be filled (may be null). * @param val the value to be stored in all elements of the array. @@ -72,7 +72,7 @@ public static double[] fill(final double[] a, final double val) { } /** - * Fills and returns the given array. + * Fills and returns the given array, assigning the given {@code float} value to each element of the array. * * @param a the array to be filled (may be null). * @param val the value to be stored in all elements of the array. @@ -87,7 +87,7 @@ public static float[] fill(final float[] a, final float val) { } /** - * Fills and returns the given array. + * Fills and returns the given array, assigning the given {@code int} value to each element of the array. * * @param a the array to be filled (may be null). * @param val the value to be stored in all elements of the array. @@ -102,7 +102,7 @@ public static int[] fill(final int[] a, final int val) { } /** - * Fills and returns the given array. + * Fills and returns the given array, assigning the given {@code long} value to each element of the array. * * @param a the array to be filled (may be null). * @param val the value to be stored in all elements of the array. @@ -117,7 +117,7 @@ public static long[] fill(final long[] a, final long val) { } /** - * Fills and returns the given array. + * Fills and returns the given array, assigning the given {@code short} value to each element of the array. * * @param a the array to be filled (may be null). * @param val the value to be stored in all elements of the array. @@ -132,7 +132,7 @@ public static short[] fill(final short[] a, final short val) { } /** - * Fills and returns the given array. + * Fills and returns the given array, assigning the given {@code T} value to each element of the array. * * @param the array type. * @param a the array to be filled (may be null).