public static enum AceCommandDescription.ScrollIntoView extends java.lang.Enum<AceCommandDescription.ScrollIntoView>
Enum Constant and Description |
---|
animate
Scroll to cursor with animation
|
center
Locate cursor in the center of the screen
|
cursor
Scroll to cursor without animation
|
selectionPart
Scroll to selected text
|
Modifier and Type | Method and Description |
---|---|
static AceCommandDescription.ScrollIntoView |
fromString(java.lang.String value) |
static AceCommandDescription.ScrollIntoView |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AceCommandDescription.ScrollIntoView[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AceCommandDescription.ScrollIntoView animate
public static final AceCommandDescription.ScrollIntoView center
public static final AceCommandDescription.ScrollIntoView cursor
public static final AceCommandDescription.ScrollIntoView selectionPart
public static AceCommandDescription.ScrollIntoView[] values()
for (AceCommandDescription.ScrollIntoView c : AceCommandDescription.ScrollIntoView.values()) System.out.println(c);
public static AceCommandDescription.ScrollIntoView 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 AceCommandDescription.ScrollIntoView fromString(java.lang.String value)