public static enum DrawDot.Arrows extends Enum<DrawDot.Arrows>
| Enum Constant and Description |
|---|
BOX |
CROW |
CURVE |
DIAMOND |
DOT |
ICURVE |
INV |
NONE |
NORMAL |
TEE |
VEE |
| Modifier and Type | Method and Description |
|---|---|
static DrawDot.Arrows |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DrawDot.Arrows[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DrawDot.Arrows BOX
public static final DrawDot.Arrows CROW
public static final DrawDot.Arrows CURVE
public static final DrawDot.Arrows DIAMOND
public static final DrawDot.Arrows DOT
public static final DrawDot.Arrows ICURVE
public static final DrawDot.Arrows INV
public static final DrawDot.Arrows NONE
public static final DrawDot.Arrows NORMAL
public static final DrawDot.Arrows TEE
public static final DrawDot.Arrows VEE
public static DrawDot.Arrows[] values()
for (DrawDot.Arrows c : DrawDot.Arrows.values()) System.out.println(c);
public static DrawDot.Arrows 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.