public static enum PathCalculator.ArrowDirection extends Enum<PathCalculator.ArrowDirection>
Enum Constant and Description |
---|
DOWN
Draws the arrow pointing down.
|
LEFT
Draws the arrow pointing left.
|
RIGHT
Draws the arrow pointing right.
|
UP
Draws the arrow pointing up.
|
Modifier and Type | Method and Description |
---|---|
static PathCalculator.ArrowDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathCalculator.ArrowDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathCalculator.ArrowDirection UP
public static final PathCalculator.ArrowDirection DOWN
public static final PathCalculator.ArrowDirection LEFT
public static final PathCalculator.ArrowDirection RIGHT
public static PathCalculator.ArrowDirection[] values()
for (PathCalculator.ArrowDirection c : PathCalculator.ArrowDirection.values()) System.out.println(c);
public static PathCalculator.ArrowDirection 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 © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.