public enum DataCollectionLevel extends java.lang.Enum<DataCollectionLevel> implements SerializableBeaconValue
| Enum Constant and Description |
|---|
OFF
No data will be collected at all
|
PERFORMANCE
Only performance related data will be collected
|
USER_BEHAVIOR
All available RUM (real user monitoring) data, including performance related data, is collected.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
asBeaconValue()
Returns the value of this instance in the form how it will be written to the beacon
|
static DataCollectionLevel |
defaultValue() |
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()
public java.lang.String asBeaconValue()
SerializableBeaconValueasBeaconValue in interface SerializableBeaconValuepublic static DataCollectionLevel defaultValue()