Enum Constant and Description |
---|
BOLD |
DASHED |
DIAGONALS |
DOTTED |
FILLED |
INVISIBLE |
ROUNDED |
SOLID |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static NodeStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeStyle BOLD
public static final NodeStyle DASHED
public static final NodeStyle DIAGONALS
public static final NodeStyle DOTTED
public static final NodeStyle INVISIBLE
public static final NodeStyle FILLED
public static final NodeStyle ROUNDED
public static final NodeStyle SOLID
public static NodeStyle[] values()
for (NodeStyle c : NodeStyle.values()) System.out.println(c);
public static NodeStyle 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 java.lang.String toString()
toString
in class java.lang.Enum<NodeStyle>