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