public enum UserRole extends java.lang.Enum<UserRole>
Enum Constant and Description |
---|
AUDIT |
CRYPTO_OFFICER |
CRYPTO_USER |
LIMITED_CRYPTO_OFFICER |
LIMITED_USER |
NONE |
USER |
Modifier and Type | Method and Description |
---|---|
static UserRole |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserRole USER
public static final UserRole CRYPTO_OFFICER
public static final UserRole LIMITED_USER
public static final UserRole CRYPTO_USER
public static final UserRole AUDIT
public static final UserRole LIMITED_CRYPTO_OFFICER
public static final UserRole NONE
public static UserRole[] values()
for (UserRole c : UserRole.values()) System.out.println(c);
public static UserRole valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 2014-2018 SafeNet. All rights reserved.