public enum CentraSitePrivilege extends java.lang.Enum<CentraSitePrivilege>
Modifier and Type | Method and Description |
---|---|
static java.util.List<CentraSitePrivilege> |
getCentraSitePrivilege(java.lang.Character privilege)
Returns a list of
CentraSitePrivilege s equivalent of the given character privilege. |
static java.util.List<CentraSitePrivilege> |
getCentraSitePrivilege(java.lang.String privilege)
Returns a list of
CentraSitePrivilege s equivalent of the given JAXR privilege. |
static CentraSitePrivilege |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CentraSitePrivilege[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CentraSitePrivilege READ
public static final CentraSitePrivilege WRITE
public static final CentraSitePrivilege FULL
public static CentraSitePrivilege[] values()
for (CentraSitePrivilege c : CentraSitePrivilege.values()) System.out.println(c);
public static CentraSitePrivilege 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 nullpublic static java.util.List<CentraSitePrivilege> getCentraSitePrivilege(java.lang.String privilege)
CentraSitePrivilege
s equivalent of the given JAXR privilege.privilege
- The JAXR string for the privilegeList
of CentraSitePrivilege
enumerated based on privilegepublic static java.util.List<CentraSitePrivilege> getCentraSitePrivilege(java.lang.Character privilege)
CentraSitePrivilege
s equivalent of the given character privilege.privilege
- The character value for the privilegeList
of CentraSitePrivilege
enumerated based on privilege