public enum TracerCategory extends java.lang.Enum<TracerCategory>
ITracer
stacks to be categorized.Enum Constant and Description |
---|
AdminUserInterface
Category for admin user interface access
|
DataStore
Category for underlying datastore functionality
|
DeviceManagementApiCall
Category for core device management API invocations
|
RestApiCall
Category for REST API invocations
|
Unspecified
Indicates no category specified
|
Modifier and Type | Method and Description |
---|---|
static TracerCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TracerCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TracerCategory AdminUserInterface
public static final TracerCategory RestApiCall
public static final TracerCategory DeviceManagementApiCall
public static final TracerCategory DataStore
public static final TracerCategory Unspecified
public static TracerCategory[] values()
for (TracerCategory c : TracerCategory.values()) System.out.println(c);
public static TracerCategory 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