Enum ActivityEventType
- java.lang.Object
-
- java.lang.Enum<ActivityEventType>
-
- com.epam.ta.reportportal.entity.enums.ActivityEventType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ActivityEventType>
public enum ActivityEventType extends java.lang.Enum<ActivityEventType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.Optional<ActivityEventType>fromString(java.lang.String string)java.lang.StringgetValue()static ActivityEventTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ActivityEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_DASHBOARD
public static final ActivityEventType CREATE_DASHBOARD
-
UPDATE_DASHBOARD
public static final ActivityEventType UPDATE_DASHBOARD
-
DELETE_DASHBOARD
public static final ActivityEventType DELETE_DASHBOARD
-
CREATE_WIDGET
public static final ActivityEventType CREATE_WIDGET
-
UPDATE_WIDGET
public static final ActivityEventType UPDATE_WIDGET
-
DELETE_WIDGET
public static final ActivityEventType DELETE_WIDGET
-
CREATE_FILTER
public static final ActivityEventType CREATE_FILTER
-
UPDATE_FILTER
public static final ActivityEventType UPDATE_FILTER
-
DELETE_FILTER
public static final ActivityEventType DELETE_FILTER
-
ANALYZE_ITEM
public static final ActivityEventType ANALYZE_ITEM
-
UPDATE_DEFECT
public static final ActivityEventType UPDATE_DEFECT
-
DELETE_DEFECT
public static final ActivityEventType DELETE_DEFECT
-
CREATE_BTS
public static final ActivityEventType CREATE_BTS
-
UPDATE_BTS
public static final ActivityEventType UPDATE_BTS
-
DELETE_BTS
public static final ActivityEventType DELETE_BTS
-
START_LAUNCH
public static final ActivityEventType START_LAUNCH
-
FINISH_LAUNCH
public static final ActivityEventType FINISH_LAUNCH
-
DELETE_LAUNCH
public static final ActivityEventType DELETE_LAUNCH
-
UPDATE_PROJECT
public static final ActivityEventType UPDATE_PROJECT
-
POST_ISSUE
public static final ActivityEventType POST_ISSUE
-
ATTACH_ISSUE
public static final ActivityEventType ATTACH_ISSUE
-
ATTACH_ISSUE_AA
public static final ActivityEventType ATTACH_ISSUE_AA
-
UPDATE_ITEM
public static final ActivityEventType UPDATE_ITEM
-
CREATE_USER
public static final ActivityEventType CREATE_USER
-
START_IMPORT
public static final ActivityEventType START_IMPORT
-
FINISH_IMPORT
public static final ActivityEventType FINISH_IMPORT
-
-
Method Detail
-
values
public static ActivityEventType[] 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 (ActivityEventType c : ActivityEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActivityEventType 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
-
getValue
public java.lang.String getValue()
-
fromString
public static java.util.Optional<ActivityEventType> fromString(java.lang.String string)
-
-