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
    • END_OF_PATH

      public static final MoveSituation END_OF_PATH
    • COLLISION_BLOCKING

      public static final MoveSituation COLLISION_BLOCKING
    • DISCONNECTED_PATH

      public static final MoveSituation DISCONNECTED_PATH
    • OUTSIDE_SCENE

      public static final MoveSituation OUTSIDE_SCENE
    • NO_REACHABLE_TILE

      public static final MoveSituation NO_REACHABLE_TILE
  • 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