Enum Class FollowerState

java.lang.Object
java.lang.Enum<FollowerState>
ru.dragonestia.msb3.api.ai.FollowerState
All Implemented Interfaces:
Serializable, Comparable<FollowerState>, Constable

public enum FollowerState extends Enum<FollowerState>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Путь успешно пройден.
    Entity зашел в тупик и не может найти путь.
    Entity находится в состоянии пути к какой-то точке, либо же идет просчет пути до точки
    Путь не задан.
    Путь был принудительно отклонен.
    Entity не может дойти до указанной точки так как она превышает лимит длинны пути.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    static FollowerState[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • NONE

      public static final FollowerState NONE
      Путь не задан.
    • FOLLOWING

      public static final FollowerState FOLLOWING
      Entity находится в состоянии пути к какой-то точке, либо же идет просчет пути до точки
    • COMPLETED

      public static final FollowerState COMPLETED
      Путь успешно пройден.
    • DEADLOCKED

      public static final FollowerState DEADLOCKED
      Entity зашел в тупик и не может найти путь.
    • TERMINATED

      public static final FollowerState TERMINATED
      Путь был принудительно отклонен.
    • TOO_FAR

      public static final FollowerState TOO_FAR
      Entity не может дойти до указанной точки так как она превышает лимит длинны пути.
  • Method Details

    • values

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