public class JceRandom extends AbstractRandom
Random implementation using the built-in SecureRandom PRNG.| Modifier and Type | Field and Description |
|---|---|
static String |
NAME |
BY_NAME_COMPARATOR, NAME_EXTRACTOR| Constructor and Description |
|---|
JceRandom() |
| Modifier and Type | Method and Description |
|---|---|
void |
fill(byte[] foo,
int start,
int len)
Fill part of bytes with random values.
|
String |
getName() |
int |
random(int n)
Returns a pseudo-random uniformly distributed
int in the half-open range [0, n). |
toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitfindByName, findFirstMatchByName, getNameList, getNames, ofName, removeByName, safeCompareByNamepublic static final String NAME
public String getName()
public void fill(byte[] foo,
int start,
int len)
Randomfoo - byte array to be filled.start - index to start filling at.len - length of segment to fill.public int random(int n)
Randomint in the half-open range [0, n).n - The range upper limitCopyright © 2018–2024 The Apache Software Foundation. All rights reserved.