public static enum IARoute.Error extends java.lang.Enum<IARoute.Error>
| Enum Constant and Description |
|---|
GRAPH_NOT_AVAILABLE
Wayfinding graph not available
|
NO_ERROR
Routing was successful
|
ROUTING_FAILED
Route could not be computed
|
| Modifier and Type | Method and Description |
|---|---|
static IARoute.Error |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IARoute.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IARoute.Error NO_ERROR
public static final IARoute.Error ROUTING_FAILED
public static final IARoute.Error GRAPH_NOT_AVAILABLE
public static IARoute.Error[] values()
for (IARoute.Error c : IARoute.Error.values()) System.out.println(c);
public static IARoute.Error valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null