-
- All Implemented Interfaces:
-
java.io.Serializable
,java.lang.Comparable
public enum PathFindingMode
Available modes for path finding
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NORMAL
Default mode : Shortest path available
EASY
May use some steps and may not be the shortest available path but relatively comfortable path for families and elderly.
ACCESSIBLE
Does not include any steps in paths. It is the most comfortable path for people with having difficulty with walking.
-
Method Summary
Modifier and Type Method Description static Array<PathFindingMode>
values()
static PathFindingMode
valueOf(String name)
-
-
Method Detail
-
values
static Array<PathFindingMode> values()
-
valueOf
static PathFindingMode valueOf(String name)
-
-
-
-