public static enum SubstanceConstants.TabCloseKind extends java.lang.Enum<SubstanceConstants.TabCloseKind>
SubstanceLookAndFeel.TABBED_PANE_CLOSE_CALLBACK
Enum Constant and 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 and Description |
---|---|
static SubstanceConstants.TabCloseKind |
valueOf(java.lang.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(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