public static enum DebugShape.Type extends java.lang.Enum<DebugShape.Type>
| Enum Constant and Description |
|---|
ARROW |
BOX |
CIRCLE |
LINE |
SPHERE |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static DebugShape.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebugShape.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugShape.Type LINE
public static final DebugShape.Type BOX
public static final DebugShape.Type SPHERE
public static final DebugShape.Type CIRCLE
public static final DebugShape.Type TEXT
public static final DebugShape.Type ARROW
public static DebugShape.Type[] values()
for (DebugShape.Type c : DebugShape.Type.values()) System.out.println(c);
public static DebugShape.Type 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 null