public enum AccessLevel extends java.lang.Enum<AccessLevel>
The security access level of an object restricts use of the object to users with the appropriate object-access level granted. See the BI platform Administrator Guide for more information about object-access levels.
BusinessLayerPackageImpl.getAccessLevel()| Enum Constant and Description |
|---|
CONFIDENTIAL
The 'CONFIDENTIAL' literal object.
|
CONTROLLED
The 'CONTROLLED' literal object.
|
PRIVATE
The 'PRIVATE' literal object.
|
PUBLIC
The 'PUBLIC' literal object.
|
RESTRICTED
The 'RESTRICTED' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
CONFIDENTIAL_VALUE
The 'CONFIDENTIAL' literal value.
|
static int |
CONTROLLED_VALUE
The 'CONTROLLED' literal value.
|
static int |
PRIVATE_VALUE
The 'PRIVATE' literal value.
|
static int |
PUBLIC_VALUE
The 'PUBLIC' literal value.
|
static int |
RESTRICTED_VALUE
The 'RESTRICTED' literal value.
|
static java.util.List<AccessLevel> |
VALUES
A public read-only list of all the 'Access Level' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static AccessLevel |
get(int value)
Returns the 'Access Level' literal with the specified integer value.
|
static AccessLevel |
get(java.lang.String literal)
Returns the 'Access Level' literal with the specified literal value.
|
static AccessLevel |
getByName(java.lang.String name)
Returns the 'Access Level' literal with the specified name.
|
java.lang.String |
getLiteral()
Returns the string representation of the enumerator.
|
java.lang.String |
getName()
Returns the literal name of the enumerator.
|
int |
getValue()
Returns the literal integer value of the enumerator.
|
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static AccessLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessLevel PUBLIC
This literal represents the Public access level for business objects.
PUBLIC_VALUEpublic static final AccessLevel CONTROLLED
This literal represents the Controlled access level for business objects.
CONTROLLED_VALUEpublic static final AccessLevel RESTRICTED
This literal represents the Restricted access level for business objects.
RESTRICTED_VALUEpublic static final AccessLevel CONFIDENTIAL
This literal represents the Confidential access level for business objects.
CONFIDENTIAL_VALUEpublic static final AccessLevel PRIVATE
This literal represents the Private access level for business objects.
PRIVATE_VALUEpublic static final int PUBLIC_VALUE
PUBLIC,
Constant Field Valuespublic static final int CONTROLLED_VALUE
CONTROLLED,
Constant Field Valuespublic static final int RESTRICTED_VALUE
RESTRICTED,
Constant Field Valuespublic static final int CONFIDENTIAL_VALUE
CONFIDENTIAL,
Constant Field Valuespublic static final int PRIVATE_VALUE
PRIVATE,
Constant Field Valuespublic static final java.util.List<AccessLevel> VALUES
public static AccessLevel[] values()
for (AccessLevel c : AccessLevel.values()) System.out.println(c);
public static AccessLevel 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 AccessLevel get(java.lang.String literal)
literal - The enumerator literal as a stringAccessLevel object
public static AccessLevel getByName(java.lang.String name)
name - The literal name of the enumeratorAccessLevel object
public static AccessLevel get(int value)
value - The literal integer value of the enumeratorAccessLevel object
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString in class java.lang.Enum<AccessLevel>