public enum DistributionType extends Enum<DistributionType>
| Enum Constant and Description |
|---|
Boss2dDensityUniform |
DensityUniform |
MiddleDensityUniform |
SelectedDensityUniform |
SinglePoint |
Uniform |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DistributionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistributionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributionType SinglePoint
public static final DistributionType Uniform
public static final DistributionType DensityUniform
public static final DistributionType Boss2dDensityUniform
public static final DistributionType SelectedDensityUniform
public static final DistributionType MiddleDensityUniform
public static DistributionType[] values()
for (DistributionType c : DistributionType.values()) System.out.println(c);
public static DistributionType 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 nullpublic String toString()
toString in class Enum<DistributionType>Copyright © 2019. All Rights Reserved.