Package com.ooyala.pulse
Enum Class LogItem.Event
- All Implemented Interfaces:
Serializable
,Comparable<LogItem.Event>
,Constable
- Enclosing class:
- LogItem
Describes the event which triggered the log item.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionError with no dedicated event type.The user tried to perform an operation not allowed in the current state.Unaccepted or missing arguments.A request received an empty or malformed response.No ad response.SDK user canceled request.HTTP request failed.HTTP request timed out.Non-fatal warning message. -
Method Summary
Modifier and TypeMethodDescriptionstatic LogItem.Event
Returns the enum constant of this class with the specified name.static LogItem.Event[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
NO_AD_RESPONSE
No ad response. -
INVALID_ARGUMENT
Unaccepted or missing arguments. Only dispatched during session and tracker requests. -
INVALID_RESPONSE
A request received an empty or malformed response. Potentially dispatched during all types of requests. -
GENERAL_ERROR
Error with no dedicated event type. Potentially dispatched during all types of requests. -
REQUEST_FAILED
HTTP request failed. Potentially dispatched during all types of requests. -
REQUEST_TIMEOUT
HTTP request timed out. Potentially dispatched during all types of requests. -
REQUEST_CANCELED
SDK user canceled request. Only dispatched during ad requests. -
WARNING
Non-fatal warning message. Potentially dispatched during all types of requests. -
ILLEGAL_OPERATION
The user tried to perform an operation not allowed in the current state. Only dispatched during tracker requests.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-