Enum Class DisplayHint

java.lang.Object
java.lang.Enum<DisplayHint>
com.evolveum.midpoint.prism.DisplayHint
All Implemented Interfaces:
Serializable, Comparable<DisplayHint>, Constable

public enum DisplayHint extends Enum<DisplayHint>
Enumeration for "display" annotation. "display" annotation enumeration also replaces emphasized=true.
  • Enum Constant Details

    • HIDDEN

      public static final DisplayHint HIDDEN
      Item shouldn't be visible.
    • REGULAR

      public static final DisplayHint REGULAR
      Item should be visible, standard visibility behaviour for item.
    • EMPHASIZED

      public static final DisplayHint EMPHASIZED
      Item should be visible and emphasized. E.g. it should be displayed in bold.
    • COLLAPSED

      public static final DisplayHint COLLAPSED
      Item should be visible and collapsed. E.g. it should be displayed in collapsed form. Applicable only for containers.
    • EXPANDED

      public static final DisplayHint EXPANDED
      Item should be visible and expanded. E.g. it should be displayed in expanded form. Applicable only for containers.
  • Method Details

    • values

      public static DisplayHint[] 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 DisplayHint 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
    • findByValue

      public static DisplayHint findByValue(String value)
    • getValue

      public String getValue()