Enum MaterializedWidgetType
- java.lang.Object
-
- java.lang.Enum<MaterializedWidgetType>
-
- com.epam.ta.reportportal.ws.model.widget.MaterializedWidgetType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MaterializedWidgetType>
public enum MaterializedWidgetType extends java.lang.Enum<MaterializedWidgetType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPONENT_HEALTH_CHECK_TABLECUMULATIVE_TREND_CHART
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetType()static MaterializedWidgetTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MaterializedWidgetType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPONENT_HEALTH_CHECK_TABLE
public static final MaterializedWidgetType COMPONENT_HEALTH_CHECK_TABLE
-
CUMULATIVE_TREND_CHART
public static final MaterializedWidgetType CUMULATIVE_TREND_CHART
-
-
Method Detail
-
values
public static MaterializedWidgetType[] 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 (MaterializedWidgetType c : MaterializedWidgetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MaterializedWidgetType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getType
public java.lang.String getType()
-
-