public enum KeyMapType extends Enum<KeyMapType>
| Modifier and Type | Method and Description |
|---|---|
static KeyMapType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyMapType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyMapType DEFAULT
public static final KeyMapType EMACS
public static final KeyMapType SUBLIME
public static final KeyMapType VIM
public static KeyMapType[] values()
for (KeyMapType c : KeyMapType.values()) System.out.println(c);
public static KeyMapType 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 nullCopyright © 2018. All rights reserved.