public enum RenderStyle extends 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(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(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 © 2000–2019 BioJava. All rights reserved.