Serializable, Comparable<EventTypes>public enum EventTypes extends Enum<EventTypes>
| Enum Constant | Description |
|---|---|
AGENT_LOG_IN |
|
AGENT_LOG_OUT |
|
CONFIG |
|
ERROR |
|
HEARTBEAT |
|
LOG_IN |
|
LOG_IN_CHALLENGE |
|
LOG_IN_FAILURE |
|
LOG_OUT |
|
PERFORMANCE |
|
REQUEST |
|
SDK |
| Modifier and Type | Method | Description |
|---|---|---|
String |
getType() |
|
static EventTypes |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static EventTypes[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTypes AGENT_LOG_IN
public static final EventTypes AGENT_LOG_OUT
public static final EventTypes LOG_IN
public static final EventTypes LOG_IN_CHALLENGE
public static final EventTypes LOG_IN_FAILURE
public static final EventTypes LOG_OUT
public static final EventTypes SDK
public static final EventTypes ERROR
public static final EventTypes REQUEST
public static final EventTypes CONFIG
public static final EventTypes HEARTBEAT
public static final EventTypes PERFORMANCE
public static EventTypes[] values()
for (EventTypes c : EventTypes.values()) System.out.println(c);
public static EventTypes valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getType()
Copyright © 2020. All rights reserved.