public static enum TabPane.TabClosingPolicy extends Enum<TabPane.TabClosingPolicy>
This specifies how the TabPane handles tab closing from an end-users perspective. The options are:
| Enum Constant and Description |
|---|
ALL_TABS
All tabs will have the option to be closed.
|
SELECTED_TAB
Only the currently selected tab will have the option to be closed, with a
graphic next to the tab text being shown.
|
UNAVAILABLE
Tabs can not be closed by the user.
|
| Modifier and Type | Method and Description |
|---|---|
static TabPane.TabClosingPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TabPane.TabClosingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TabPane.TabClosingPolicy SELECTED_TAB
public static final TabPane.TabClosingPolicy ALL_TABS
public static final TabPane.TabClosingPolicy UNAVAILABLE
public static TabPane.TabClosingPolicy[] values()
for (TabPane.TabClosingPolicy c : TabPane.TabClosingPolicy.values()) System.out.println(c);
public static TabPane.TabClosingPolicy 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 nullCopyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.