Enum ExperimentAlchemistSimulationAdapter.GridType
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum ExperimentAlchemistSimulationAdapter.GridType extends Enum<ExperimentAlchemistSimulationAdapter.GridType>
The type of grid used in the experiment.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
name
private final Integer
ordinal
private final EnumEntries<ExperimentAlchemistSimulationAdapter.GridType>
entries
-
Enum Constant Summary
Enum Constants Enum Constant Description REGULAR
The regular grid.
PERTURBED
The perturbed (or irregular) grid.
UNIFORM
The random grid.
EXPONENTIAL
The grid uniform on an axis and exponential on the other.
-
Method Summary
Modifier and Type Method Description String
toString()
final ExperimentAlchemistSimulationAdapter.GridType
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<ExperimentAlchemistSimulationAdapter.GridType>
values()
Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<ExperimentAlchemistSimulationAdapter.GridType>
getEntries()
The type of grid used in the experiment. -
-
Method Detail
-
valueOf
final ExperimentAlchemistSimulationAdapter.GridType valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<ExperimentAlchemistSimulationAdapter.GridType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<ExperimentAlchemistSimulationAdapter.GridType> getEntries()
The type of grid used in the experiment.
-
-
-
-