public enum SymbolPath extends Enum<SymbolPath>
| 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 SymbolPath |
fromValue(int value)
Reconstruct from ordinal value
|
String |
toString()
return the enum Type as a String
|
int |
value()
Get the ordinal value of the enum
|
static SymbolPath |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SymbolPath[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymbolPath CIRCLE
public static final SymbolPath FORWARD_CLOSED_ARROW
public static final SymbolPath FORWARD_OPEN_ARROW
public static final SymbolPath BACKWARD_CLOSED_ARROW
public static final SymbolPath BACKWARD_OPEN_ARROW
public static SymbolPath[] values()
for (SymbolPath c : SymbolPath.values()) System.out.println(c);
public static SymbolPath 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 nullpublic int value()
public static SymbolPath fromValue(int value)
value - public String toString()
toString in class Enum<SymbolPath>Copyright © 2011-2014 GWT Maps API V3. All Rights Reserved.