public enum ObjectType extends java.lang.Enum<ObjectType>
com.epam.ta.reportportal.aop.logging.ActivityLoggingAspect| Enum Constant and Description |
|---|
DASHBOARD |
LAUNCH |
PROJECT |
TEST_ITEM |
WIDGET |
| Modifier and Type | Method and Description |
|---|---|
static ObjectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectType LAUNCH
public static final ObjectType PROJECT
public static final ObjectType WIDGET
public static final ObjectType TEST_ITEM
public static final ObjectType DASHBOARD
public static ObjectType[] values()
for (ObjectType c : ObjectType.values()) System.out.println(c);
public static ObjectType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null