Enum Class MoveSituation

java.lang.Object
java.lang.Enum<MoveSituation>
com.valhalla.sdk.api.pathing.MoveSituation
All Implemented Interfaces:
Serializable, Comparable<MoveSituation>, Constable

public enum MoveSituation extends Enum<MoveSituation>
The next condition encountered while following a global route through the loaded scene.
  • Enum Constant Details

    • NORMAL

      public static final MoveSituation NORMAL
      A local walk target can be issued.
    • END_OF_PATH

      public static final MoveSituation END_OF_PATH
      The route cursor has reached the final tile.
    • COLLISION_BLOCKING

      public static final MoveSituation COLLISION_BLOCKING
      The first route transition is blocked by live collision.
    • DISCONNECTED_PATH

      public static final MoveSituation DISCONNECTED_PATH
      Consecutive route tiles are not adjacent.
    • OUTSIDE_SCENE

      public static final MoveSituation OUTSIDE_SCENE
      The next route transition leaves the loaded scene.
    • NO_REACHABLE_TILE

      public static final MoveSituation NO_REACHABLE_TILE
      No reachable tile remains in the local route window.
  • Method Details

    • values

      public static MoveSituation[] 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

      public static MoveSituation valueOf(String name)
      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 name
      NullPointerException - if the argument is null