public enum RenderStyle extends java.lang.Enum<RenderStyle>
| Enum Constant and Description |
|---|
BALL_AND_STICK |
CARTOON |
MESH |
RIBBON |
SPHERES |
STICKS |
SURFACE |
WIREFRAME |
| Modifier and Type | Method and Description |
|---|---|
static RenderStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderStyle WIREFRAME
public static final RenderStyle STICKS
public static final RenderStyle BALL_AND_STICK
public static final RenderStyle SURFACE
public static final RenderStyle RIBBON
public static final RenderStyle CARTOON
public static final RenderStyle SPHERES
public static final RenderStyle MESH
public static RenderStyle[] values()
for (RenderStyle c : RenderStyle.values()) System.out.println(c);
public static RenderStyle 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 nullCopyright © 2000-2020 BioJava. All Rights Reserved.