|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<KeyStrokes>
com.github.croesch.micro_debug.gui.settings.KeyStrokes
public enum KeyStrokes
Provides some keystrokes, that may be modified by the user.
| Enum Constant Summary | |
|---|---|
ABOUT
keystroke to visualize the about frame |
|
EXIT
keystroke to quit the program |
|
HELP
keystroke to show the help frame |
|
INTERRUPT
the keystroke to interrupt the running processor |
|
MICRO_STEP
keystroke to perform a micro step |
|
RESET
keystroke to reset the processor |
|
RUN
keystroke to run the debugger |
|
STEP
keystroke to perform a macro step |
|
| Method Summary | |
|---|---|
KeyStroke |
stroke()
Returns the keystroke of this setting. |
static KeyStrokes |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static KeyStrokes[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final KeyStrokes ABOUT
public static final KeyStrokes EXIT
public static final KeyStrokes HELP
public static final KeyStrokes MICRO_STEP
public static final KeyStrokes RESET
public static final KeyStrokes RUN
public static final KeyStrokes STEP
public static final KeyStrokes INTERRUPT
| Method Detail |
|---|
public static KeyStrokes[] values()
for (KeyStrokes c : KeyStrokes.values()) System.out.println(c);
public static KeyStrokes valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null@Nullable public KeyStroke stroke()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||