Package swiss.trustbroker.config.dto
Enum Class GuiFeatures
- All Implemented Interfaces:
Serializable,Comparable<GuiFeatures>,Constable
GUI feature configuration
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEnable backdrop component.Enable footer.Enable header.Enable HRD with ordering and banner support. -
Method Summary
Modifier and TypeMethodDescriptionstatic GuiFeaturesReturns the enum constant of this class with the specified name.static GuiFeatures[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HEADER
Enable header. -
FOOTER
Enable footer. -
BACKDROP
Enable backdrop component. -
HRD_BANNERS
Enable HRD with ordering and banner support.
Note: This new layout will become the default in a later release and the old layout will be dropped.- Since:
- 1.9.0
-
-
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
-