public enum RoleType extends Enum<RoleType>
Modifier and Type | Method and Description |
---|---|
static RoleType |
fromKey(String role) |
String |
getKey() |
String |
getName() |
static RoleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoleType VIEW
public static final RoleType CREATE
public static final RoleType MANAGE
public static RoleType[] values()
for (RoleType c : RoleType.values()) System.out.println(c);
public static RoleType 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 getKey()
public String getName()
Copyright © 2019 Pivotal Software, Inc.. All rights reserved.