public enum EditorSettingsKey extends java.lang.Enum<EditorSettingsKey>
EditorSettings.| Enum Constant and Description |
|---|
ANALYZE_FILTER_OUT
The key for saving the menu state "Analyze|Highlight 2".
|
ANALYZE_HIGHLIGHT0
The key for saving the menu state "Analyze|Filter view".
|
ANALYZE_HIGHLIGHT1
The key for saving the menu state "Analyze|Highlight 0".
|
ANALYZE_HIGHLIGHT2
The key for saving the menu state "Analyze|Highlight 1".
|
| Modifier and Type | Method and Description |
|---|---|
@NotNull java.lang.String |
getKey()
Returns the settings key name.
|
static EditorSettingsKey |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EditorSettingsKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EditorSettingsKey ANALYZE_HIGHLIGHT0
public static final EditorSettingsKey ANALYZE_HIGHLIGHT1
public static final EditorSettingsKey ANALYZE_HIGHLIGHT2
public static final EditorSettingsKey ANALYZE_FILTER_OUT
public static EditorSettingsKey[] values()
for (EditorSettingsKey c : EditorSettingsKey.values()) System.out.println(c);
public static EditorSettingsKey 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 null@NotNull public @NotNull java.lang.String getKey()