|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Dijkstra.GoalMode>
com.kuka.graph.alg.Dijkstra.GoalMode
public static enum Dijkstra.GoalMode
Specifies the termination of the algorithm.
| Enum Constant Summary | |
|---|---|
ALL
The algorithm terminates when all specified goals are found. |
|
ALL_INVERSE
The algorithms terminates when all nodes other than the specified goals are found. |
|
ONE
The algorithms terminates when one of the specified goals was found. |
|
ONE_INVERSE
The algorithms terminates when a node other than the specified goals is found. |
|
| Method Summary | |
|---|---|
static Dijkstra.GoalMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Dijkstra.GoalMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Dijkstra.GoalMode ONE
public static final Dijkstra.GoalMode ONE_INVERSE
public static final Dijkstra.GoalMode ALL
public static final Dijkstra.GoalMode ALL_INVERSE
| Method Detail |
|---|
public static Dijkstra.GoalMode[] values()
for (Dijkstra.GoalMode c : Dijkstra.GoalMode.values()) System.out.println(c);
public static Dijkstra.GoalMode valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||