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