Enum ResponseAttribute

    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method 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.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • MAX_BEACON_SIZE

        public static final ResponseAttribute MAX_BEACON_SIZE
        Maximum POST body size when sending beacon data.
      • MAX_SESSION_DURATION

        public static final ResponseAttribute MAX_SESSION_DURATION
        Maximum duration after which a session is split.
      • MAX_EVENTS_PER_SESSION

        public static final ResponseAttribute MAX_EVENTS_PER_SESSION
        Maximum number of top level actions after which a session is split.
      • SESSION_TIMEOUT

        public static final ResponseAttribute SESSION_TIMEOUT
        Idle timeout after which a session is split.
      • VISIT_STORE_VERSION

        public static final ResponseAttribute VISIT_STORE_VERSION
        Version of the visit store to be used.
      • IS_CAPTURE

        public static final ResponseAttribute IS_CAPTURE
        Indicator whether capturing data is allowed or not.
      • IS_CAPTURE_CRASHES

        public static final ResponseAttribute IS_CAPTURE_CRASHES
        Indicator whether crashes should be captured or not.
      • IS_CAPTURE_ERRORS

        public static final ResponseAttribute IS_CAPTURE_ERRORS
        Indicator whether errors should be captured or not.
      • TRAFFIC_CONTROL_PERCENTAGE

        public static final ResponseAttribute TRAFFIC_CONTROL_PERCENTAGE
        Sampling percentage for sessions.
      • APPLICATION_ID

        public static final ResponseAttribute APPLICATION_ID
        The ID of the application to which a configuration applies.
      • SERVER_ID

        public static final ResponseAttribute SERVER_ID
        The ID of the server to which data should be sent to.
      • STATUS

        public static final ResponseAttribute STATUS
        Status of the new session configuration request.
      • TIMESTAMP

        public static final ResponseAttribute TIMESTAMP
        Timestamp of the configuration sent by the server.
    • Method Detail

      • values

        public static ResponseAttribute[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ResponseAttribute c : ResponseAttribute.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ResponseAttribute valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null