Package com.saperion.ngc.navigation
Enum Class HiddenFolders.HideableFolders
java.lang.Object
java.lang.Enum<HiddenFolders.HideableFolders>
com.saperion.ngc.navigation.HiddenFolders.HideableFolders
- All Implemented Interfaces:
Serializable
,Comparable<HiddenFolders.HideableFolders>
,Constable
- Enclosing class:
- HiddenFolders
Folders that can be hidden by configuration.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFavorites node.Private forms node.Personal files (collections) node.Personal folders node.Parent node of all workflow nodes. -
Method Summary
Modifier and TypeMethodDescriptiongetByNodeClass
(Class<? extends NaviTreeNode> nodeClass) Returns the HideableFolders enum constant that correlates with the specified node-class.static boolean
isContained
(String name) Checks if an enum-constant with the specified name exists.Returns the enum constant of this class with the specified name.static HiddenFolders.HideableFolders[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TASKS
Parent node of all workflow nodes. -
PERSONALFOLDERS
Personal folders node. -
PERSONALFILES
Personal files (collections) node. -
FAVORITES
Favorites node. -
MYAPPLICATIONS
Private forms node.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
isContained
Checks if an enum-constant with the specified name exists.- Parameters:
name
- name to check for- Returns:
- true if constant exists
-
getByNodeClass
Returns the HideableFolders enum constant that correlates with the specified node-class.- Parameters:
nodeClass
- a class that is a or extendsNaviTreeNode
- Returns:
- enum constant for the specified class
-