public enum UserAuthenticationActivityType extends Enum<UserAuthenticationActivityType>
Enum Constant and Description |
---|
LOGOUT |
SIGN_IN |
TOKEN_RENEWAL |
Modifier and Type | Method and Description |
---|---|
static UserAuthenticationActivityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserAuthenticationActivityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserAuthenticationActivityType SIGN_IN
public static final UserAuthenticationActivityType LOGOUT
public static final UserAuthenticationActivityType TOKEN_RENEWAL
public static UserAuthenticationActivityType[] values()
for (UserAuthenticationActivityType c : UserAuthenticationActivityType.values()) System.out.println(c);
public static UserAuthenticationActivityType 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 © 2019. All rights reserved.