Package ru.dragonestia.msb3.api.ai
Enum Class FollowerState
- All Implemented Interfaces:
Serializable,Comparable<FollowerState>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionПуть успешно пройден.Entity зашел в тупик и не может найти путь.Entity находится в состоянии пути к какой-то точке, либо же идет просчет пути до точкиПуть не задан.Путь был принудительно отклонен.Entity не может дойти до указанной точки так как она превышает лимит длинны пути. -
Method Summary
Modifier and TypeMethodDescriptionstatic FollowerStateReturns the enum constant of this class with the specified name.static FollowerState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
Путь не задан. -
FOLLOWING
Entity находится в состоянии пути к какой-то точке, либо же идет просчет пути до точки -
COMPLETED
Путь успешно пройден. -
DEADLOCKED
Entity зашел в тупик и не может найти путь. -
TERMINATED
Путь был принудительно отклонен. -
TOO_FAR
Entity не может дойти до указанной точки так как она превышает лимит длинны пути.
-
-
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
-