public static enum Symbol.PredefinedSymbol extends Enum<Symbol.PredefinedSymbol>
| Enum Constant and Description |
|---|
CIRCLE |
DIAMOND |
SQUARE |
TRIANGLE |
TRIANGLEDOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
static Symbol.PredefinedSymbol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Symbol.PredefinedSymbol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Symbol.PredefinedSymbol CIRCLE
public static final Symbol.PredefinedSymbol SQUARE
public static final Symbol.PredefinedSymbol DIAMOND
public static final Symbol.PredefinedSymbol TRIANGLE
public static final Symbol.PredefinedSymbol TRIANGLEDOWN
public static Symbol.PredefinedSymbol[] values()
for (Symbol.PredefinedSymbol c : Symbol.PredefinedSymbol.values()) System.out.println(c);
public static Symbol.PredefinedSymbol 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 String getCode()
Copyright © 2013. All Rights Reserved.