public static enum DrawDot.NodeStyle extends Enum<DrawDot.NodeStyle>
| Enum Constant and Description |
|---|
bold |
dashed |
diagonals |
dotted |
filled |
rounded |
solid |
striped |
wedged |
| Modifier and Type | Method and Description |
|---|---|
static DrawDot.NodeStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DrawDot.NodeStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrawDot.NodeStyle solid
public static final DrawDot.NodeStyle dashed
public static final DrawDot.NodeStyle dotted
public static final DrawDot.NodeStyle bold
public static final DrawDot.NodeStyle rounded
public static final DrawDot.NodeStyle diagonals
public static final DrawDot.NodeStyle filled
public static final DrawDot.NodeStyle striped
public static final DrawDot.NodeStyle wedged
public static DrawDot.NodeStyle[] values()
for (DrawDot.NodeStyle c : DrawDot.NodeStyle.values()) System.out.println(c);
public static DrawDot.NodeStyle 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 nullCopyright © 2020. All rights reserved.