public final enum

TabBarHidingMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.pspdfkit.configuration.activity.TabBarHidingMode

Class Overview

Mode controlling whether the tab bar should be shown or hidden depending on if there are loaded documents. The default is AUTOMATIC_HIDE_SINGLE.

Summary

Enum Values
TabBarHidingMode  AUTOMATIC  Hide the tabbed bar only when there are no documents. 
TabBarHidingMode  AUTOMATIC_HIDE_SINGLE  Hide the tabbed bar when there is a single document or no documents. 
TabBarHidingMode  HIDE  Always hide the tabbed bar, even if there are loaded documents. 
TabBarHidingMode  SHOW  Never hide the tabbed bar, even when there are no loaded documents. 
Public Methods
static TabBarHidingMode valueOf(String name)
final static TabBarHidingMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final TabBarHidingMode AUTOMATIC

Hide the tabbed bar only when there are no documents.

public static final TabBarHidingMode AUTOMATIC_HIDE_SINGLE

Hide the tabbed bar when there is a single document or no documents.

public static final TabBarHidingMode HIDE

Always hide the tabbed bar, even if there are loaded documents.

public static final TabBarHidingMode SHOW

Never hide the tabbed bar, even when there are no loaded documents.

Public Methods

public static TabBarHidingMode valueOf (String name)

public static final TabBarHidingMode[] values ()