public enum ResponseAttribute extends java.lang.Enum<ResponseAttribute>
ResponseAttributes sent by the server.| Enum Constant and Description |
|---|
APPLICATION_ID
The ID of the application to which a configuration applies.
|
IS_CAPTURE
Indicator whether capturing data is allowed or not.
|
IS_CAPTURE_CRASHES
Indicator whether crashes should be captured or not.
|
IS_CAPTURE_ERRORS
Indicator whether errors should be captured or not.
|
MAX_BEACON_SIZE
Maximum POST body size when sending beacon data.
|
MAX_EVENTS_PER_SESSION
Maximum number of top level actions after which a session is split.
|
MAX_SESSION_DURATION
Maximum duration after which a session is split.
|
MULTIPLICITY
Multiplicity
|
SEND_INTERVAL
Send interval
|
SERVER_ID
The ID of the server to which data should be sent to.
|
SESSION_TIMEOUT
Idle timeout after which a session is split.
|
STATUS
Status of the new session configuration request.
|
TIMESTAMP
Timestamp of the configuration sent by the server.
|
TRAFFIC_CONTROL_PERCENTAGE
Sampling percentage for sessions.
|
VISIT_STORE_VERSION
Version of the visit store to be used.
|
| Modifier and Type | Method and Description |
|---|---|
static ResponseAttribute |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResponseAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseAttribute MAX_BEACON_SIZE
public static final ResponseAttribute MAX_SESSION_DURATION
public static final ResponseAttribute MAX_EVENTS_PER_SESSION
public static final ResponseAttribute SESSION_TIMEOUT
public static final ResponseAttribute SEND_INTERVAL
public static final ResponseAttribute VISIT_STORE_VERSION
public static final ResponseAttribute IS_CAPTURE
public static final ResponseAttribute IS_CAPTURE_CRASHES
public static final ResponseAttribute IS_CAPTURE_ERRORS
public static final ResponseAttribute TRAFFIC_CONTROL_PERCENTAGE
public static final ResponseAttribute APPLICATION_ID
public static final ResponseAttribute MULTIPLICITY
public static final ResponseAttribute SERVER_ID
public static final ResponseAttribute STATUS
public static final ResponseAttribute TIMESTAMP
public static ResponseAttribute[] values()
for (ResponseAttribute c : ResponseAttribute.values()) System.out.println(c);
public static ResponseAttribute 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