public enum AceCommand extends Enum<AceCommand>
| Enum Constant and Description |
|---|
FIND |
FIND_NEXT |
FIND_PREVIOUS |
GOTO_LINE |
REPLACE |
REPLACE_ALL |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static AceCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AceCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AceCommand FIND
public static final AceCommand FIND_NEXT
public static final AceCommand FIND_PREVIOUS
public static final AceCommand GOTO_LINE
public static final AceCommand REPLACE
public static final AceCommand REPLACE_ALL
public static AceCommand[] values()
for (AceCommand c : AceCommand.values()) System.out.println(c);
public static AceCommand 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 nullpublic String getName()
Copyright © 2012–2018 JBoss by Red Hat. All rights reserved.