public static enum NodeElemStyle.SymbolShape extends Enum<NodeElemStyle.SymbolShape>
Enum Constant and Description |
---|
CIRCLE |
DECAGON |
HEPTAGON |
HEXAGON |
NONAGON |
OCTAGON |
PENTAGON |
SQUARE |
TRIANGLE |
Modifier and Type | Method and Description |
---|---|
static NodeElemStyle.SymbolShape |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeElemStyle.SymbolShape[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeElemStyle.SymbolShape SQUARE
public static final NodeElemStyle.SymbolShape CIRCLE
public static final NodeElemStyle.SymbolShape TRIANGLE
public static final NodeElemStyle.SymbolShape PENTAGON
public static final NodeElemStyle.SymbolShape HEXAGON
public static final NodeElemStyle.SymbolShape HEPTAGON
public static final NodeElemStyle.SymbolShape OCTAGON
public static final NodeElemStyle.SymbolShape NONAGON
public static final NodeElemStyle.SymbolShape DECAGON
public static NodeElemStyle.SymbolShape[] values()
for (NodeElemStyle.SymbolShape c : NodeElemStyle.SymbolShape.values()) System.out.println(c);
public static NodeElemStyle.SymbolShape 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 null