Enum EUserPortalViewTab
- All Implemented Interfaces:
Serializable, Comparable<EUserPortalViewTab>
Enum for the tabs in the user portal UI.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAdvanced tab for editing advanced settings such as custom properties.Base tab with for editing e.g. the portal's name and description.Customization tab for editing the portal's appearance (e.g. localized messages and files).Forms tab for editing the forms available in the portal. -
Method Summary
Modifier and TypeMethodDescriptionstatic EUserPortalViewTabbyTabIndexOrNull(int activeTabIndex) Gets the tab by its index.inttabIndex()Gets the index of the tab.static EUserPortalViewTabReturns the enum constant of this type with the specified name.static EUserPortalViewTab[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
BASE
Base tab with for editing e.g. the portal's name and description. -
FORMS
Forms tab for editing the forms available in the portal. -
CUSTOMIZATION
Customization tab for editing the portal's appearance (e.g. localized messages and files). -
ADVANCED
Advanced tab for editing advanced settings such as custom properties.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
tabIndex
public int tabIndex()Gets the index of the tab.- Returns:
- Index of the tab.
-
byTabIndexOrNull
Gets the tab by its index.- Parameters:
activeTabIndex- Index of the tab.- Returns:
- The tab or null if no tab with the given index exists.
-