Enum EFormThemeReferenceKind
- All Implemented Interfaces:
Serializable, Comparable<EFormThemeReferenceKind>
Enumeration of the possible types of
FormThemeReference.- Since:
- 8.3.0
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe name for theCLIENT_FORM_THEMEtype.static final StringThe name for theFORM_THEME_PLUGINtype.static final StringThe name for theSYSTEMtype. -
Method Summary
Modifier and TypeMethodDescriptionstatic EFormThemeReferenceKindbyTypeNameOrNull(String typeName) Returns theEFormThemeReferenceKindfor the giventype name, or null if no such type exists.getDisplayName(Locale locale) Returns the display name of this kind of form theme reference in the given locale.abstract StringGets the canonical type name for this kind of form theme reference.static EFormThemeReferenceKindReturns the enum constant of this type with the specified name.static EFormThemeReferenceKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CLIENT_FORM_THEME
-
FORM_THEME_PLUGIN
-
SYSTEM
-
-
Field Details
-
TYPE_CLIENT_FORM_THEME
The name for theCLIENT_FORM_THEMEtype.- See Also:
-
TYPE_FORM_THEME_PLUGIN
The name for theFORM_THEME_PLUGINtype.- See Also:
-
TYPE_SYSTEM
-
-
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
-
getDisplayName
-
getTypeName
Gets the canonical type name for this kind of form theme reference.- Returns:
- The canonical type name for this kind of form theme reference.
- See Also:
-
byTypeNameOrNull
Returns theEFormThemeReferenceKindfor the giventype name, or null if no such type exists.- Parameters:
typeName- The type name to look up.- Returns:
- The corresponding
EFormThemeReferenceKind, or null if no such type exists.
-