public static enum XYGraphWidget.Edge extends java.lang.Enum<XYGraphWidget.Edge>
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static XYGraphWidget.Edge |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XYGraphWidget.Edge[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XYGraphWidget.Edge NONE
public static final XYGraphWidget.Edge LEFT
public static final XYGraphWidget.Edge RIGHT
public static final XYGraphWidget.Edge TOP
public static final XYGraphWidget.Edge BOTTOM
public static XYGraphWidget.Edge[] values()
for (XYGraphWidget.Edge c : XYGraphWidget.Edge.values()) System.out.println(c);
public static XYGraphWidget.Edge 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 nullpublic int getValue()