public static enum EventSender.Result extends java.lang.Enum<EventSender.Result>
Enum Constant and Description |
---|
FAILURE
The EventSender was not able to deliver the events.
|
STOP
The EventSender was not able to deliver the events, and the nature of the error indicates that
the SDK should not attempt to send any more events.
|
SUCCESS
The EventSender successfully delivered the event(s).
|
Modifier and Type | Method and Description |
---|---|
static EventSender.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventSender.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventSender.Result SUCCESS
public static final EventSender.Result FAILURE
public static final EventSender.Result STOP
public static EventSender.Result[] values()
for (EventSender.Result c : EventSender.Result.values()) System.out.println(c);
public static EventSender.Result 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