Enum DashboardWidgetSourceTypeType
- java.lang.Object
-
- java.lang.Enum<DashboardWidgetSourceTypeType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.DashboardWidgetSourceTypeType
-
- All Implemented Interfaces:
Serializable
,Comparable<DashboardWidgetSourceTypeType>
public enum DashboardWidgetSourceTypeType extends Enum<DashboardWidgetSourceTypeType>
Java class for DashboardWidgetSourceTypeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="DashboardWidgetSourceTypeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="objectCollection"/> <enumeration value="auditSearch"/> <enumeration value="object"/> <enumeration value="widgetData"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUDIT_SEARCH
Content of the widget will be based on data from audit trail search.OBJECT
Content of the widget will be based on data from a single object.OBJECT_COLLECTION
Content of widget is based on object collection.WIDGET_DATA
Content of the widget will be based on data from a stored in widget.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DashboardWidgetSourceTypeType
fromValue(String v)
String
value()
static DashboardWidgetSourceTypeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DashboardWidgetSourceTypeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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.
-
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.
-
-
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 nameNullPointerException
- if the argument is null
-
value
public String value()
-
fromValue
public static DashboardWidgetSourceTypeType fromValue(String v)
-
-