public static enum StructureDialog.DrawOptions extends java.lang.Enum<StructureDialog.DrawOptions>
Enum Constant and Description |
---|
CIRCULAR |
FLAT |
FLIPPED |
NORMAL |
UNCIRCLED |
Modifier and Type | Method and Description |
---|---|
static StructureDialog.DrawOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StructureDialog.DrawOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructureDialog.DrawOptions CIRCULAR
public static final StructureDialog.DrawOptions FLAT
public static final StructureDialog.DrawOptions FLIPPED
public static final StructureDialog.DrawOptions NORMAL
public static final StructureDialog.DrawOptions UNCIRCLED
public static StructureDialog.DrawOptions 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 static StructureDialog.DrawOptions[] values()
for (StructureDialog.DrawOptions c : StructureDialog.DrawOptions.values()) System.out.println(c);