Serializable
, Comparable<SubstanceConstants.TabCloseKind>
public static enum SubstanceConstants.TabCloseKind extends Enum<SubstanceConstants.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 SubstanceConstants.TabCloseKind |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static SubstanceConstants.TabCloseKind[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubstanceConstants.TabCloseKind NONE
public static final SubstanceConstants.TabCloseKind THIS
public static final SubstanceConstants.TabCloseKind ALL
public static final SubstanceConstants.TabCloseKind ALL_BUT_THIS
public static SubstanceConstants.TabCloseKind[] values()
for (SubstanceConstants.TabCloseKind c : SubstanceConstants.TabCloseKind.values()) System.out.println(c);
public static SubstanceConstants.TabCloseKind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null