public enum FailureType extends java.lang.Enum<FailureType>
Enum Constant and Description |
---|
EMITTER_REQUEST_FAILURE
An exception during POST request in BatchEmitter.
|
HTTP_CONNECTION_FAILURE
An exception or unsuccessful POST request in the HttpClientAdapter.
|
REJECTED_BY_COLLECTOR
A request status code other than 2xx is received.
|
TRACKER_STORAGE_FULL
The InMemoryEventStore buffer is full.
|
Modifier and Type | Method and Description |
---|---|
static FailureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FailureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FailureType REJECTED_BY_COLLECTOR
public static final FailureType TRACKER_STORAGE_FULL
public static final FailureType HTTP_CONNECTION_FAILURE
public static final FailureType EMITTER_REQUEST_FAILURE
public static FailureType[] values()
for (FailureType c : FailureType.values()) System.out.println(c);
public static FailureType 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