| Modifier and Type | Interface and Description |
|---|---|
interface |
ParameterizableRandomGenerator
This interface handles parameterizable types.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
RandomFactory.addRandomGenerator(RandomGenerator generator)
Add a random generator to the list of available generators.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BufferedImageRandomGenerator |
| Modifier and Type | Method and Description |
|---|---|
static RandomGenerator |
BufferedImageRandomGenerator.getInstance() |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractCollectionRandomGenerator |
class |
CollectionRandomGenerator |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractListRandomGenerator |
class |
AbstractSequentialListRandomGenerator |
class |
ArrayListRandomGenerator |
class |
AttributeListRandomGenerator |
class |
CopyOnWriteArrayListRandomGenerator |
class |
LinkedListRandomGenerator |
class |
ListRandomGenerator |
class |
RoleListRandomGenerator |
class |
RoleUnresolvedListRandomGenerator |
class |
StackRandomGenerator |
class |
VectorRandomGenerator |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractQueueRandomGenerator |
class |
ArrayBlockingQueueRandomGenerator |
class |
ArrayDequeRandomGenerator |
class |
BlockingDequeRandomGenerator |
class |
BlockingQueueRandomGenerator |
class |
ConcurrentLinkedDequeRandomGenerator |
class |
ConcurrentLinkedQueueRandomGenerator |
class |
DelayQueueRandomGenerator |
class |
DequeRandomGenerator |
class |
LinkedBlockingDequeRandomGenerator |
class |
LinkedBlockingQueueRandomGenerator |
class |
LinkedTransferQueueRandomGenerator |
class |
PriorityBlockingQueueRandomGenerator |
class |
PriorityQueueRandomGenerator |
class |
QueueRandomGenerator |
class |
SynchronousQueueRandomGenerator |
class |
TransferQueueRandomGenerator |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractSetRandomGenerator |
class |
ConcurrentSkipListSetRandomGenerator |
class |
CopyOnWriteArraySetRandomGenerator |
class |
EnumSetRandomGenerator |
class |
HashSetRandomGenerator |
class |
JobStateReasonsRandomGenerator |
class |
LinkedHashSetRandomGenerator |
class |
NavigableSetRandomGenerator |
class |
SetRandomGenerator |
class |
SortedSetRandomGenerator |
class |
TreeSetRandomGenerator |
| Modifier and Type | Class and Description |
|---|---|
class |
BaseCollectionRandomGenerator |
| Modifier and Type | Class and Description |
|---|---|
class |
CredentialsRandomGenerator |
class |
EncryptionKeyRandomGenerator |
class |
KerberosTimeRandomGenerator |
class |
PrincipalNameRandomGenerator |
| Modifier and Type | Method and Description |
|---|---|
static RandomGenerator |
EncryptionKeyRandomGenerator.getInstance() |
static RandomGenerator |
KerberosTimeRandomGenerator.getInstance() |
static RandomGenerator |
CredentialsRandomGenerator.getInstance() |
static RandomGenerator |
PrincipalNameRandomGenerator.getInstance() |
| Modifier and Type | Class and Description |
|---|---|
class |
InstantRandomGenerator |
class |
TimeZoneRandomGenerator |
class |
XMLGregorianCalendarRandomGenerator |
class |
ZonedDateTimeRandomGenerator
This class generates random ZonedDateTime.
|
class |
ZoneIdRandomGenerator |
| Modifier and Type | Method and Description |
|---|---|
static RandomGenerator |
XMLGregorianCalendarRandomGenerator.getInstance() |
| Modifier and Type | Class and Description |
|---|---|
class |
BasicRandomGenerator
This is the most basic random generator, it handles all basic java types (20 in total).
Namely: 1. |
class |
ClassRandomGenerator
This Random generator generates random Class objects.
|
class |
DefaultRandomGenerator |
class |
EnumRandomGenerator
This random generator generates for Enum type.
|
class |
ObjectRandomGenerator
This is the random generator responsible for generating Object instances.
|
class |
TimestampRandomGenerator
This RandomGenerator is responsible for generating random values for java.sql.Timestamp class.
|
class |
URIRandomGenerator |
class |
URLRandomGenerator |
class |
UUIDRandomGenerator |
class |
VoidRandomGenerator
This Random generator is for facilitative purpose only so no extra logic on any app needs to be set to handle void
|
| Modifier and Type | Method and Description |
|---|---|
static RandomGenerator |
BasicRandomGenerator.getInstance() |
static RandomGenerator |
VoidRandomGenerator.getInstance() |
static RandomGenerator |
ClassRandomGenerator.getInstance() |
static RandomGenerator |
TimestampRandomGenerator.getInstance() |
static RandomGenerator |
ObjectRandomGenerator.getInstance() |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractMapRandomGenerator |
class |
ConcurrentHashMapRandomGenerator |
class |
ConcurrentMapRandomGenerator |
class |
EnumMapRandomGenerator |
class |
HashMapRandomGenerator |
class |
HashtableRandomGenerator |
class |
IdentityHashMapRandomGenerator |
class |
LinkedHashMapRandomGenerator |
class |
MapRandomGenerator |
class |
NavigableMapRandomGenerator |
class |
SortedMapRandomGenerator |
class |
TreeMapRandomGenerator |
class |
WeakHashMapRandomGenerator |
| Modifier and Type | Class and Description |
|---|---|
class |
BaseMapRandomGenerator |
| Modifier and Type | Method and Description |
|---|---|
RandomGenerator |
RandomGeneratorService.getDefaultRandomGenerator()
Returns the default registered RandomGenerator;
|
RandomGenerator |
RandomGeneratorService.getRandomGeneratorByParameterizable(Parameterizable type)
This retrieves the most appropriate ParameterizableRandomGenerator for a given Type.
|
RandomGenerator |
RandomGeneratorService.getRandomGeneratorByType(Class<?> type)
This retrieves the most appropriate RandomGenerator for a given Type.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RandomGeneratorService.registerRandomGenerator(RandomGenerator randomGenerator)
Register a RandomGenerator.
|
void |
RandomGeneratorService.setDefaultRandomGenerator(RandomGenerator randomGenerator)
This method set the RandomGenerator to use if non are registered for given type.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RandomGeneratorAdapter |
| Modifier and Type | Method and Description |
|---|---|
RandomGenerator |
DefaultRandomGeneratorService.getDefaultRandomGenerator() |
RandomGenerator |
DefaultRandomGeneratorService.getRandomGeneratorByParameterizable(Parameterizable type) |
RandomGenerator |
DefaultRandomGeneratorService.getRandomGeneratorByType(Class<?> type) |
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultRandomGeneratorService.registerRandomGenerator(RandomGenerator randomGenerator) |
void |
DefaultRandomGeneratorService.setDefaultRandomGenerator(RandomGenerator randomGenerator) |
| Constructor and Description |
|---|
RandomGeneratorAdapter(Class<?> fromType,
Class<?> toType,
RandomGenerator adaptedRandomGenerator) |
Copyright © 2010–2021. All rights reserved.