Package com.securenative.enums
Enum EventTypes
- java.lang.Object
-
- java.lang.Enum<EventTypes>
-
- com.securenative.enums.EventTypes
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EventTypes>,java.lang.constant.Constable
public enum EventTypes extends java.lang.Enum<EventTypes>
-
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description java.lang.StringgetType()static EventTypesvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
LOG_IN
public static final EventTypes LOG_IN
-
LOG_IN_CHALLENGE
public static final EventTypes LOG_IN_CHALLENGE
-
LOG_IN_FAILURE
public static final EventTypes LOG_IN_FAILURE
-
LOG_OUT
public static final EventTypes LOG_OUT
-
SIGN_UP
public static final EventTypes SIGN_UP
-
AUTH_CHALLENGE
public static final EventTypes AUTH_CHALLENGE
-
AUTH_CHALLENGE_SUCCESS
public static final EventTypes AUTH_CHALLENGE_SUCCESS
-
AUTH_CHALLENGE_FAILURE
public static final EventTypes AUTH_CHALLENGE_FAILURE
-
TWO_FACTOR_DISABLE
public static final EventTypes TWO_FACTOR_DISABLE
-
EMAIL_UPDATE
public static final EventTypes EMAIL_UPDATE
-
PASSWORD_RESET
public static final EventTypes PASSWORD_RESET
-
PASSWORD_RESET_SUCCESS
public static final EventTypes PASSWORD_RESET_SUCCESS
-
PASSWORD_UPDATE
public static final EventTypes PASSWORD_UPDATE
-
PASSWORD_RESET_FAILURE
public static final EventTypes PASSWORD_RESET_FAILURE
-
USER_INVITE
public static final EventTypes USER_INVITE
-
ROLE_UPDATE
public static final EventTypes ROLE_UPDATE
-
PROFILE_UPDATE
public static final EventTypes PROFILE_UPDATE
-
PAGE_VIEW
public static final EventTypes PAGE_VIEW
-
VERIFY
public static final EventTypes VERIFY
-
-
Method Detail
-
values
public static EventTypes[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventTypes valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getType
public java.lang.String getType()
-
-