public static enum SubstanceSlices.TabCloseKind extends java.lang.Enum<SubstanceSlices.TabCloseKind>
| Enum Constant | Description |
|---|---|
ALL |
Indicates that all tabs should be closed.
|
ALL_BUT_THIS |
Indicates that all tabs except the specified should be closed.
|
NONE |
Indicates that no tabs should be closed.
|
THIS |
Indicates that the specified tab should be closed.
|
| Modifier and Type | Method | Description |
|---|---|---|
static SubstanceSlices.TabCloseKind |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SubstanceSlices.TabCloseKind[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubstanceSlices.TabCloseKind NONE
public static final SubstanceSlices.TabCloseKind THIS
public static final SubstanceSlices.TabCloseKind ALL
public static final SubstanceSlices.TabCloseKind ALL_BUT_THIS
public static SubstanceSlices.TabCloseKind[] values()
for (SubstanceSlices.TabCloseKind c : SubstanceSlices.TabCloseKind.values()) System.out.println(c);
public static SubstanceSlices.TabCloseKind 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