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