public static enum MazeGenerationParams.AlgorithmType extends Enum<MazeGenerationParams.AlgorithmType>
| Enum Constant and Description |
|---|
RECURSIVE_BACKTRACKER_BLOCKS |
RECURSIVE_BACKTRACKER_PASSAGES |
| Modifier and Type | Method and Description |
|---|---|
static MazeGenerationParams.AlgorithmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MazeGenerationParams.AlgorithmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MazeGenerationParams.AlgorithmType RECURSIVE_BACKTRACKER_PASSAGES
public static final MazeGenerationParams.AlgorithmType RECURSIVE_BACKTRACKER_BLOCKS
public static MazeGenerationParams.AlgorithmType[] values()
for (MazeGenerationParams.AlgorithmType c : MazeGenerationParams.AlgorithmType.values()) System.out.println(c);
public static MazeGenerationParams.AlgorithmType 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 © 2019 Martin Frank. All rights reserved.