Package oracle.as.scheduler.security
Enum Class MetadataPermission.Action
- All Implemented Interfaces:
Serializable
,Comparable<MetadataPermission.Action>
,java.lang.constant.Constable
- Enclosing class:
- MetadataPermission<ID_TYPE extends oracle.as.scheduler.security.MetadataPermissionId>
Enum of the permissible actions for ESS metadata.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEncapsulation of all permissions for the metadata(s) configured in this MetadataPermission.Create permission for the metadata(s) configured in this MetadataPermission.Delete permission for the metadata(s) configured in this MetadataPermission.Execute permission for the metadata(s) configured in this MetadataPermission.Read permission for the metadata(s) configured in this MetadataPermission.Update permission for the metadata(s) configured in this MetadataPermission. -
Method Summary
Modifier and TypeMethodDescriptionint
length()
Returns the length of the string representation of this enum objectint
mask()
Returns the mask of this enum stringchar[]
Returns the array of chars of this enum stringtoString()
Returns the string representation of this enum objectstatic MetadataPermission.Action
Returns the enum constant of this class with the specified name.static MetadataPermission.Action
valueOfField
(String privStr) Returns the enum object associated with the given string.static MetadataPermission.Action[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Enum Constant Details
-
READ
Read permission for the metadata(s) configured in this MetadataPermission. -
CREATE
Create permission for the metadata(s) configured in this MetadataPermission. -
UPDATE
Update permission for the metadata(s) configured in this MetadataPermission. -
DELETE
Delete permission for the metadata(s) configured in this MetadataPermission. -
EXECUTE
Execute permission for the metadata(s) configured in this MetadataPermission. -
ALL
Encapsulation of all permissions for the metadata(s) configured in this MetadataPermission.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
mask
public int mask()Returns the mask of this enum string- Returns:
- int the mask of this enum string
-
toCharArray
public char[] toCharArray()Returns the array of chars of this enum string- Returns:
- the array of chars of this enum string
-
length
public int length()Returns the length of the string representation of this enum object- Returns:
- the length of this enum string
-
toString
Returns the string representation of this enum object- Overrides:
toString
in classEnum<MetadataPermission.Action>
- Returns:
- the string representation of this enum
-
valueOfField
Returns the enum object associated with the given string. This method throwsIllegalArgumentException
if an invalid action string is specified- Parameters:
privStr
- the string representation of this enum- Returns:
- the enum object
-