public enum EventType extends Enum<EventType>
Modifier and Type | Method and Description |
---|---|
static EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType LOGIN
public static final EventType LOGIN_ERROR
public static final EventType REGISTER
public static final EventType REGISTER_ERROR
public static final EventType LOGOUT
public static final EventType LOGOUT_ERROR
public static final EventType CODE_TO_TOKEN
public static final EventType CODE_TO_TOKEN_ERROR
public static final EventType REFRESH_TOKEN
public static final EventType VALIDATE_ACCESS_TOKEN
public static final EventType VALIDATE_ACCESS_TOKEN_ERROR
public static final EventType REFRESH_TOKEN_ERROR
public static final EventType SOCIAL_LINK
public static final EventType SOCIAL_LINK_ERROR
public static final EventType REMOVE_SOCIAL_LINK
public static final EventType REMOVE_SOCIAL_LINK_ERROR
public static final EventType UPDATE_EMAIL
public static final EventType UPDATE_EMAIL_ERROR
public static final EventType UPDATE_PROFILE
public static final EventType UPDATE_PROFILE_ERROR
public static final EventType UPDATE_PASSWORD
public static final EventType UPDATE_PASSWORD_ERROR
public static final EventType UPDATE_TOTP
public static final EventType UPDATE_TOTP_ERROR
public static final EventType VERIFY_EMAIL
public static final EventType VERIFY_EMAIL_ERROR
public static final EventType REMOVE_TOTP
public static final EventType REMOVE_TOTP_ERROR
public static final EventType SEND_VERIFY_EMAIL
public static final EventType SEND_VERIFY_EMAIL_ERROR
public static final EventType SEND_RESET_PASSWORD
public static final EventType SEND_RESET_PASSWORD_ERROR
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType 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 nullCopyright © 2014. All Rights Reserved.