public enum StandardSymbol extends java.lang.Enum<StandardSymbol>
Enum Constant and Description |
---|
BACKWARD_CLOSED_ARROW
A backward-pointing closed arrow.
|
BACKWARD_OPEN_ARROW
A backward-pointing open arrow.
|
CIRCLE
A circle.
|
FORWARD_CLOSED_ARROW
A forward-pointing closed arrow.
|
FORWARD_OPEN_ARROW
A forward-pointing open arrow.
|
Modifier and Type | Method and Description |
---|---|
static StandardSymbol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardSymbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardSymbol BACKWARD_CLOSED_ARROW
public static final StandardSymbol BACKWARD_OPEN_ARROW
public static final StandardSymbol CIRCLE
public static final StandardSymbol FORWARD_CLOSED_ARROW
public static final StandardSymbol FORWARD_OPEN_ARROW
public static StandardSymbol[] values()
for (StandardSymbol c : StandardSymbol.values()) System.out.println(c);
public static StandardSymbol 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