Skip to content

Commit 348a6d9

Browse files
committed
Javadoc
1 parent dd9b5ef commit 348a6d9

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/main/java/org/apache/commons/lang3/RandomUtils.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public static byte[] nextBytes(final int count) {
129129
}
130130

131131
/**
132-
* Generates a random double between 0 (inclusive) and Double.MAX_VALUE (exclusive).
132+
* Generates a random double between 0 (inclusive) and {@link Double#MAX_VALUE} ({@value Double#MAX_VALUE} exclusive).
133133
*
134134
* @return the random double.
135135
* @see #nextDouble(double, double)
@@ -156,7 +156,7 @@ public static double nextDouble(final double startInclusive, final double endExc
156156
}
157157

158158
/**
159-
* Generates a random float between 0 (inclusive) and Float.MAX_VALUE (exclusive).
159+
* Generates a random float between 0 (inclusive) and {@link Float#MAX_VALUE} ({@value Float#MAX_VALUE} exclusive).
160160
*
161161
* @return the random float.
162162
* @see #nextFloat(float, float)
@@ -183,7 +183,7 @@ public static float nextFloat(final float startInclusive, final float endExclusi
183183
}
184184

185185
/**
186-
* Generates a random int between 0 (inclusive) and Integer.MAX_VALUE (exclusive).
186+
* Generates a random int between 0 (inclusive) and {@link Integer#MAX_VALUE} ({@value Integer#MAX_VALUE} exclusive).
187187
*
188188
* @return the random integer.
189189
* @see #nextInt(int, int)
@@ -210,7 +210,7 @@ public static int nextInt(final int startInclusive, final int endExclusive) {
210210
}
211211

212212
/**
213-
* Generates a random long between 0 (inclusive) and Long.MAX_VALUE (exclusive).
213+
* Generates a random long between 0 (inclusive) and {@link Long#MAX_VALUE} ({@value Long#MAX_VALUE} exclusive).
214214
*
215215
* @return the random long.
216216
* @see #nextLong(long, long)
@@ -320,7 +320,7 @@ public byte[] randomBytes(final int count) {
320320
}
321321

322322
/**
323-
* Generates a random double between 0 (inclusive) and Double.MAX_VALUE (exclusive).
323+
* Generates a random double between 0 (inclusive) and {@link Double#MAX_VALUE} ({@value Double#MAX_VALUE} exclusive).
324324
*
325325
* @return the random double.
326326
* @see #randomDouble(double, double)
@@ -378,7 +378,7 @@ public float randomFloat(final float startInclusive, final float endExclusive) {
378378
}
379379

380380
/**
381-
* Generates a random int between 0 (inclusive) and Integer.MAX_VALUE (exclusive).
381+
* Generates a random int between 0 (inclusive) and {@link Integer#MAX_VALUE} ({@value Integer#MAX_VALUE} exclusive).
382382
*
383383
* @return the random integer.
384384
* @see #randomInt(int, int)
@@ -407,7 +407,7 @@ public int randomInt(final int startInclusive, final int endExclusive) {
407407
}
408408

409409
/**
410-
* Generates a random long between 0 (inclusive) and Long.MAX_VALUE (exclusive).
410+
* Generates a random long between 0 (inclusive) and {@link Long#MAX_VALUE} ({@value Long#MAX_VALUE}, exclusive).
411411
*
412412
* @return the random long.
413413
* @see #randomLong(long, long)

0 commit comments

Comments
 (0)