Enum TabBarHidingMode
-
- All Implemented Interfaces:
public enum TabBarHidingMode
Mode controlling whether the tab bar should be shown or hidden depending on if there are loaded documents. The default is AUTOMATIC_HIDE_SINGLE.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOMATIC
Hide the tabbed bar only when there are no documents.
AUTOMATIC_HIDE_SINGLE
Hide the tabbed bar when there is a single document or no documents.
SHOW
Never hide the tabbed bar, even when there are no loaded documents.
HIDE
Always hide the tabbed bar, even if there are loaded documents.
-
Method Summary
Modifier and Type Method Description static Array<TabBarHidingMode>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static TabBarHidingMode
valueOf(String name)
Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<TabBarHidingMode> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static TabBarHidingMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Returns:
the enum constant with the specified name
-
-
-
-