public enum ViewerUpdateType extends Enum<ViewerUpdateType>
Enum Constant and Description |
---|
ANIMATE
Indicates one step in an animation sequence.
|
STATIC_UPDATE
Indicates that a breakpoint or watchpoint has been
reached, the viewer has just been displayed, or an update was
requested.
|
Modifier and Type | Method and Description |
---|---|
static ViewerUpdateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewerUpdateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewerUpdateType STATIC_UPDATE
public static final ViewerUpdateType ANIMATE
public static ViewerUpdateType[] values()
for (ViewerUpdateType c : ViewerUpdateType.values()) System.out.println(c);
public static ViewerUpdateType 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 null