Package com.persequor.extension.frontend
Enum Class PropertyVisibility
- All Implemented Interfaces:
Serializable
,Comparable<PropertyVisibility>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDefault value for visibility.Use this value to always hide this property in the UI.Use this value to hide this property in the UI when the `saga.backing-services-mode` property is set to SQL_ONLY.Use this value to hide this property in the UI when the `saga.backing-services-mode` property is set to STANDARD.Use this value to override hidden visibility that could be inherited from class annotation -
Method Summary
Modifier and TypeMethodDescriptionstatic PropertyVisibility
Returns the enum constant of this class with the specified name.static PropertyVisibility[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HIDDEN
Use this value to always hide this property in the UI. -
HIDDEN_IN_SQL_ONLY
Use this value to hide this property in the UI when the `saga.backing-services-mode` property is set to SQL_ONLY. -
HIDDEN_IN_STANDARD_MODE
Use this value to hide this property in the UI when the `saga.backing-services-mode` property is set to STANDARD. -
VISIBLE
Use this value to override hidden visibility that could be inherited from class annotation -
DEFAULT
Default value for visibility. Leaves the visibility with the default value (visible) or inherited value.
-
-
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
-