Enum PageSystemConfiguration.SubPage
- java.lang.Object
-
- java.lang.Enum<PageSystemConfiguration.SubPage>
-
- com.evolveum.midpoint.gui.impl.page.admin.systemconfiguration.PageSystemConfiguration.SubPage
-
- All Implemented Interfaces:
Serializable
,Comparable<PageSystemConfiguration.SubPage>
- Enclosing class:
- PageSystemConfiguration
public static enum PageSystemConfiguration.SubPage extends Enum<PageSystemConfiguration.SubPage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_CERTIFICATION
ADMIN_GUI
BASIC
INTERNALS
LOGGING
NOTIFICATION
POLICIES
PROFILING
ROLE_MANAGEMENT
WORKFLOW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIcon()
static String
getIcon(Class<? extends PageBaseSystemConfiguration> page)
Class<? extends PageBaseSystemConfiguration>
getPage()
static PageSystemConfiguration.SubPage
valueOf(String name)
Returns the enum constant of this type with the specified name.static PageSystemConfiguration.SubPage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASIC
public static final PageSystemConfiguration.SubPage BASIC
-
POLICIES
public static final PageSystemConfiguration.SubPage POLICIES
-
NOTIFICATION
public static final PageSystemConfiguration.SubPage NOTIFICATION
-
LOGGING
public static final PageSystemConfiguration.SubPage LOGGING
-
PROFILING
public static final PageSystemConfiguration.SubPage PROFILING
-
ADMIN_GUI
public static final PageSystemConfiguration.SubPage ADMIN_GUI
-
WORKFLOW
public static final PageSystemConfiguration.SubPage WORKFLOW
-
ROLE_MANAGEMENT
public static final PageSystemConfiguration.SubPage ROLE_MANAGEMENT
-
INTERNALS
public static final PageSystemConfiguration.SubPage INTERNALS
-
ACCESS_CERTIFICATION
public static final PageSystemConfiguration.SubPage ACCESS_CERTIFICATION
-
-
Method Detail
-
values
public static PageSystemConfiguration.SubPage[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PageSystemConfiguration.SubPage c : PageSystemConfiguration.SubPage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PageSystemConfiguration.SubPage 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.)- 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
-
getIcon
public String getIcon()
-
getPage
public Class<? extends PageBaseSystemConfiguration> getPage()
-
getIcon
public static String getIcon(Class<? extends PageBaseSystemConfiguration> page)
-
-