public static enum AuditableRandomGenerator.RandomMethod extends Enum<AuditableRandomGenerator.RandomMethod>
| Enum Constant and Description |
|---|
BOUNDED_DOUBLE |
BOUNDED_INT |
DOUBLE |
| Modifier and Type | Method and Description |
|---|---|
static AuditableRandomGenerator.RandomMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditableRandomGenerator.RandomMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditableRandomGenerator.RandomMethod BOUNDED_INT
public static final AuditableRandomGenerator.RandomMethod BOUNDED_DOUBLE
public static final AuditableRandomGenerator.RandomMethod DOUBLE
public static AuditableRandomGenerator.RandomMethod[] values()
for (AuditableRandomGenerator.RandomMethod c : AuditableRandomGenerator.RandomMethod.values()) System.out.println(c);
public static AuditableRandomGenerator.RandomMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.