public enum FoldIndicatorStyle extends java.lang.Enum<FoldIndicatorStyle>
Gutter.| Enum Constant and Description |
|---|
CLASSIC
Fold icons are rendered as +/- symbols in boxes.
|
MODERN
Fold icons are rendered as a chevron indicating the fold's
collapsed or expanded state.
|
| Modifier and Type | Method and Description |
|---|---|
static FoldIndicatorStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FoldIndicatorStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FoldIndicatorStyle CLASSIC
public static final FoldIndicatorStyle MODERN
public static FoldIndicatorStyle[] values()
for (FoldIndicatorStyle c : FoldIndicatorStyle.values()) System.out.println(c);
public static FoldIndicatorStyle 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