Enum DashboardWidgetSourceTypeType

  • All Implemented Interfaces:
    Serializable, Comparable<DashboardWidgetSourceTypeType>

    public enum DashboardWidgetSourceTypeType
    extends Enum<DashboardWidgetSourceTypeType>
    <p>Java class for DashboardWidgetSourceTypeType. <p>The following schema fragment specifies the expected content contained within this class. <p> <pre> &lt;simpleType name="DashboardWidgetSourceTypeType"&gt; &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; &lt;enumeration value="objectCollection"/&gt; &lt;enumeration value="auditSearch"/&gt; &lt;enumeration value="object"/&gt; &lt;/restriction&gt; &lt;/simpleType&gt; </pre>
    • Enum Constant Detail

      • 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.
      • AUDIT_SEARCH

        public static final DashboardWidgetSourceTypeType AUDIT_SEARCH
        Content of the widget will be based on data from audit trail search.
    • Method Detail

      • values

        public static DashboardWidgetSourceTypeType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DashboardWidgetSourceTypeType c : DashboardWidgetSourceTypeType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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

        public String value()