Enum Class DashboardWidgetSourceTypeType

java.lang.Object
java.lang.Enum<DashboardWidgetSourceTypeType>
com.evolveum.midpoint.xml.ns._public.common.common_3.DashboardWidgetSourceTypeType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<DashboardWidgetSourceTypeType>, Constable

public enum DashboardWidgetSourceTypeType extends Enum<DashboardWidgetSourceTypeType> implements TypeSafeEnum
Type of widget content data source. It is an identifier that specifies the type of the information (content) of the widget. This specifies type of data source for the widget content.
  • Enum Constant Details

    • OBJECT_COLLECTION

      public static final DashboardWidgetSourceTypeType OBJECT_COLLECTION
      Content of widget is based on object collection. Widget will either provide summary of the collection (number of objects, percentage), small list of collected objects or collection charts and trends.
    • OBJECT

      public static final DashboardWidgetSourceTypeType OBJECT
      Content of the widget will be based on data from a single object.
    • WIDGET_DATA

      public static final DashboardWidgetSourceTypeType WIDGET_DATA
      Content of the widget will be based on data from a stored in widget. This data can be changed asynchronously.
    • METRIC

      public static final DashboardWidgetSourceTypeType METRIC
      TODO: viliam
  • Method Details

    • values

      public static DashboardWidgetSourceTypeType[] 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 DashboardWidgetSourceTypeType 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
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static DashboardWidgetSourceTypeType fromValue(String v)