public enum DataCollectionLevel extends java.lang.Enum<DataCollectionLevel>
| Enum Constant and Description |
|---|
OFF |
PERFORMANCE |
USER_BEHAVIOR |
| Modifier and Type | Method and Description |
|---|---|
int |
getIntValue() |
static DataCollectionLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataCollectionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataCollectionLevel OFF
public static final DataCollectionLevel PERFORMANCE
public static final DataCollectionLevel USER_BEHAVIOR
public static DataCollectionLevel[] values()
for (DataCollectionLevel c : DataCollectionLevel.values()) System.out.println(c);
public static DataCollectionLevel 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 nullpublic int getIntValue()