Enum WidgetType
- java.lang.Object
-
- java.lang.Enum<WidgetType>
-
- com.epam.ta.reportportal.entity.widget.WidgetType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WidgetType>
public enum WidgetType extends java.lang.Enum<WidgetType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<WidgetType>findByName(java.lang.String name)static WidgetTypegetByName(java.lang.String type)java.lang.StringgetType()booleanisIssueTypeUpdateSupported()booleanisSupportMultilevelStructure()static WidgetTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WidgetType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OLD_LINE_CHART
public static final WidgetType OLD_LINE_CHART
-
INVESTIGATED_TREND
public static final WidgetType INVESTIGATED_TREND
-
LAUNCH_STATISTICS
public static final WidgetType LAUNCH_STATISTICS
-
STATISTIC_TREND
public static final WidgetType STATISTIC_TREND
-
CASES_TREND
public static final WidgetType CASES_TREND
-
NOT_PASSED
public static final WidgetType NOT_PASSED
-
OVERALL_STATISTICS
public static final WidgetType OVERALL_STATISTICS
-
UNIQUE_BUG_TABLE
public static final WidgetType UNIQUE_BUG_TABLE
-
BUG_TREND
public static final WidgetType BUG_TREND
-
ACTIVITY
public static final WidgetType ACTIVITY
-
LAUNCHES_COMPARISON_CHART
public static final WidgetType LAUNCHES_COMPARISON_CHART
-
LAUNCHES_DURATION_CHART
public static final WidgetType LAUNCHES_DURATION_CHART
-
LAUNCHES_TABLE
public static final WidgetType LAUNCHES_TABLE
-
TOP_TEST_CASES
public static final WidgetType TOP_TEST_CASES
-
FLAKY_TEST_CASES
public static final WidgetType FLAKY_TEST_CASES
-
PASSING_RATE_SUMMARY
public static final WidgetType PASSING_RATE_SUMMARY
-
PASSING_RATE_PER_LAUNCH
public static final WidgetType PASSING_RATE_PER_LAUNCH
-
PRODUCT_STATUS
public static final WidgetType PRODUCT_STATUS
-
MOST_TIME_CONSUMING
public static final WidgetType MOST_TIME_CONSUMING
-
CUMULATIVE
public static final WidgetType CUMULATIVE
-
TOP_PATTERN_TEMPLATES
public static final WidgetType TOP_PATTERN_TEMPLATES
-
COMPONENT_HEALTH_CHECK
public static final WidgetType COMPONENT_HEALTH_CHECK
-
-
Method Detail
-
values
public static WidgetType[] 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 (WidgetType c : WidgetType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WidgetType 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()
-
isSupportMultilevelStructure
public boolean isSupportMultilevelStructure()
-
isIssueTypeUpdateSupported
public boolean isIssueTypeUpdateSupported()
-
getByName
public static WidgetType getByName(java.lang.String type)
-
findByName
public static java.util.Optional<WidgetType> findByName(@Nullable java.lang.String name)
-
-