public enum NavigationState extends Enum<NavigationState>
NavigationEvaluatingBot.| Enum Constant and Description |
|---|
AtTheTarget |
Failed |
FailedOnWayToStart |
Navigating |
NotMoving |
OnWayToStart |
| Modifier and Type | Method and Description |
|---|---|
static NavigationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NavigationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NavigationState NotMoving
public static final NavigationState OnWayToStart
public static final NavigationState Navigating
public static final NavigationState AtTheTarget
public static final NavigationState Failed
public static final NavigationState FailedOnWayToStart
public static NavigationState[] values()
for (NavigationState c : NavigationState.values()) System.out.println(c);
public static NavigationState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All rights reserved.