public enum NodeIconType extends Enum<NodeIconType>
| Enum Constant and Description |
|---|
Oval |
Rectangular |
SmallCircle |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static NodeIconType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeIconType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeIconType Oval
public static final NodeIconType Rectangular
public static final NodeIconType SmallCircle
public static NodeIconType[] values()
for (NodeIconType c : NodeIconType.values()) System.out.println(c);
public static NodeIconType 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 toString()
toString in class Enum<NodeIconType>Copyright © 2012. All Rights Reserved.