public enum SceneUpdateCategory extends java.lang.Enum<SceneUpdateCategory>
Enum Constant and Description |
---|
Controls
Changes to the DrawHandles or other controls that need to be redrawn.
|
History
Changes to the Undo/Redo history
|
Layout
Changes to Nucleotide positions
|
Selection
Changes to the current nucleotide selection
|
Structure
Changes to Sequence or Bonds
|
Style
Changes to Nucleotide styles (color etc)
|
View
Changes to Zoom, Offset, or ViewPort
|
Modifier and Type | Method and Description |
---|---|
static SceneUpdateCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SceneUpdateCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SceneUpdateCategory Controls
public static final SceneUpdateCategory History
public static final SceneUpdateCategory Layout
public static final SceneUpdateCategory Selection
public static final SceneUpdateCategory Structure
public static final SceneUpdateCategory Style
public static final SceneUpdateCategory View
public static SceneUpdateCategory 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 SceneUpdateCategory[] values()
for (SceneUpdateCategory c : SceneUpdateCategory.values()) System.out.println(c);