public static enum RandomShapeGenerator.DistributionType extends java.lang.Enum<RandomShapeGenerator.DistributionType>
| Enum Constant and Description |
|---|
ANTI_CORRELATED |
CIRCLE |
CORRELATED |
GAUSSIAN |
UNIFORM |
| Modifier and Type | Method and Description |
|---|---|
static RandomShapeGenerator.DistributionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RandomShapeGenerator.DistributionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RandomShapeGenerator.DistributionType UNIFORM
public static final RandomShapeGenerator.DistributionType GAUSSIAN
public static final RandomShapeGenerator.DistributionType CORRELATED
public static final RandomShapeGenerator.DistributionType ANTI_CORRELATED
public static final RandomShapeGenerator.DistributionType CIRCLE
public static RandomShapeGenerator.DistributionType[] values()
for (RandomShapeGenerator.DistributionType c : RandomShapeGenerator.DistributionType.values()) System.out.println(c);
public static RandomShapeGenerator.DistributionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null