public enum EventTypes extends Enum<EventTypes>
| Modifier and Type | Method and 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 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 SIGN_UP
public static final EventTypes AUTH_CHALLENGE
public static final EventTypes AUTH_CHALLENGE_SUCCESS
public static final EventTypes AUTH_CHALLENGE_FAILURE
public static final EventTypes TWO_FACTOR_DISABLE
public static final EventTypes EMAIL_UPDATE
public static final EventTypes PASSWORD_RESET
public static final EventTypes PASSWORD_RESET_SUCCESS
public static final EventTypes PASSWORD_UPDATE
public static final EventTypes PASSWORD_RESET_FAILURE
public static final EventTypes USER_INVITE
public static final EventTypes ROLE_UPDATE
public static final EventTypes PROFILE_UPDATE
public static final EventTypes PAGE_VIEW
public static final EventTypes VERIFY
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 © 2019. All rights reserved.