public enum FileHighlightingSetting extends java.lang.Enum<FileHighlightingSetting>
Enum Constant and Description |
---|
FORCE_HIGHLIGHTING |
NONE |
SKIP_HIGHLIGHTING |
SKIP_INSPECTION |
Modifier and Type | Method and Description |
---|---|
static FileHighlightingSetting |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileHighlightingSetting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileHighlightingSetting NONE
public static final FileHighlightingSetting SKIP_HIGHLIGHTING
public static final FileHighlightingSetting FORCE_HIGHLIGHTING
public static final FileHighlightingSetting SKIP_INSPECTION
public static FileHighlightingSetting[] values()
for (FileHighlightingSetting c : FileHighlightingSetting.values()) System.out.println(c);
public static FileHighlightingSetting 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