public enum DisplayPriority extends java.lang.Enum<DisplayPriority>
Enum Constant and Description |
---|
CODE_SETTINGS
Code arrangement settings like imports, etc.
|
COMMON_SETTINGS
Any generic settings normally used by multiple languages.
|
FONT_SETTINGS
Font settings
|
GENERAL_SETTINGS
General settings (topmost)
|
KEY_LANGUAGE_SETTINGS
Key IDE language priority (depends on product), for example, Java for IntelliJ IDEA, PHP for PhpStorm etc.
|
LANGUAGE_SETTINGS
Language-specific settings.
|
OTHER_SETTINGS
Any other settings.
|
Modifier and Type | Method and Description |
---|---|
static DisplayPriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisplayPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayPriority GENERAL_SETTINGS
public static final DisplayPriority FONT_SETTINGS
public static final DisplayPriority COMMON_SETTINGS
public static final DisplayPriority CODE_SETTINGS
public static final DisplayPriority KEY_LANGUAGE_SETTINGS
public static final DisplayPriority LANGUAGE_SETTINGS
public static final DisplayPriority OTHER_SETTINGS
public static DisplayPriority[] values()
for (DisplayPriority c : DisplayPriority.values()) System.out.println(c);
public static DisplayPriority 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