Enum Class PropertyVisibility

java.lang.Object
java.lang.Enum<PropertyVisibility>
com.persequor.extension.frontend.PropertyVisibility
All Implemented Interfaces:
Serializable, Comparable<PropertyVisibility>, Constable

public enum PropertyVisibility extends Enum<PropertyVisibility>
  • Enum Constant Details

    • HIDDEN

      public static final PropertyVisibility HIDDEN
      Use this value to always hide this property in the UI.
    • HIDDEN_IN_SQL_ONLY

      public static final PropertyVisibility 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

      public static final PropertyVisibility 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

      public static final PropertyVisibility VISIBLE
      Use this value to override hidden visibility that could be inherited from class annotation
    • DEFAULT

      public static final PropertyVisibility DEFAULT
      Default value for visibility. Leaves the visibility with the default value (visible) or inherited value.
  • Method Details

    • values

      public static PropertyVisibility[] 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

      public static PropertyVisibility valueOf(String name)
      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 name
      NullPointerException - if the argument is null