public static enum CodeStyleSettingsCustomizable.IndentOption extends java.lang.Enum<CodeStyleSettingsCustomizable.IndentOption>
Enum Constant and Description |
---|
CONTINUATION_INDENT_SIZE |
INDENT_SIZE |
KEEP_INDENTS_ON_EMPTY_LINES |
LABEL_INDENT_ABSOLUTE |
LABEL_INDENT_SIZE |
SMART_TABS |
TAB_SIZE |
USE_RELATIVE_INDENTS |
USE_TAB_CHARACTER |
Modifier and Type | Method and Description |
---|---|
static CodeStyleSettingsCustomizable.IndentOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CodeStyleSettingsCustomizable.IndentOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeStyleSettingsCustomizable.IndentOption INDENT_SIZE
public static final CodeStyleSettingsCustomizable.IndentOption CONTINUATION_INDENT_SIZE
public static final CodeStyleSettingsCustomizable.IndentOption TAB_SIZE
public static final CodeStyleSettingsCustomizable.IndentOption USE_TAB_CHARACTER
public static final CodeStyleSettingsCustomizable.IndentOption SMART_TABS
public static final CodeStyleSettingsCustomizable.IndentOption LABEL_INDENT_SIZE
public static final CodeStyleSettingsCustomizable.IndentOption LABEL_INDENT_ABSOLUTE
public static final CodeStyleSettingsCustomizable.IndentOption USE_RELATIVE_INDENTS
public static final CodeStyleSettingsCustomizable.IndentOption KEEP_INDENTS_ON_EMPTY_LINES
public static CodeStyleSettingsCustomizable.IndentOption[] values()
for (CodeStyleSettingsCustomizable.IndentOption c : CodeStyleSettingsCustomizable.IndentOption.values()) System.out.println(c);
public static CodeStyleSettingsCustomizable.IndentOption 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