Package com.valhalla.sdk.api.pathing
Enum Class MoveSituation
- All Implemented Interfaces:
Serializable,Comparable<MoveSituation>,Constable
The next condition encountered while following a global route through the loaded scene.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe first route transition is blocked by live collision.Consecutive route tiles are not adjacent.The route cursor has reached the final tile.No reachable tile remains in the local route window.A local walk target can be issued.The next route transition leaves the loaded scene. -
Method Summary
Modifier and TypeMethodDescriptionstatic MoveSituationReturns the enum constant of this class with the specified name.static MoveSituation[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NORMAL
A local walk target can be issued. -
END_OF_PATH
The route cursor has reached the final tile. -
COLLISION_BLOCKING
The first route transition is blocked by live collision. -
DISCONNECTED_PATH
Consecutive route tiles are not adjacent. -
OUTSIDE_SCENE
The next route transition leaves the loaded scene. -
NO_REACHABLE_TILE
No reachable tile remains in the local route window.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-