Package com.oracle.bmc.datasafe.model
Enum PrivilegeName
- java.lang.Object
- 
- java.lang.Enum<PrivilegeName>
- 
- com.oracle.bmc.datasafe.model.PrivilegeName
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<PrivilegeName>
 
 @Generated(value="OracleSDKGenerator", comments="API Version: 20181201") public enum PrivilegeName extends Enum<PrivilegeName> implements BmcEnumThe name of the privilege granted to user.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CreateAnyIndexDeleteDeleteAnyTableIndexInsertInsertAnyTableOwnerReadReadAnyTableSelectSelectAnyTableUnknownEnumValueThis value is used if a service returns a value for this enum that is not recognized by this version of the SDK.UpdateUpdateAnyTable
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PrivilegeNamecreate(String key)StringgetValue()static PrivilegeNamevalueOf(String name)Returns the enum constant of this type with the specified name.static PrivilegeName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Selectpublic static final PrivilegeName Select 
 - 
Updatepublic static final PrivilegeName Update 
 - 
Insertpublic static final PrivilegeName Insert 
 - 
Deletepublic static final PrivilegeName Delete 
 - 
Readpublic static final PrivilegeName Read 
 - 
Ownerpublic static final PrivilegeName Owner 
 - 
Indexpublic static final PrivilegeName Index 
 - 
SelectAnyTablepublic static final PrivilegeName SelectAnyTable 
 - 
UpdateAnyTablepublic static final PrivilegeName UpdateAnyTable 
 - 
InsertAnyTablepublic static final PrivilegeName InsertAnyTable 
 - 
DeleteAnyTablepublic static final PrivilegeName DeleteAnyTable 
 - 
ReadAnyTablepublic static final PrivilegeName ReadAnyTable 
 - 
CreateAnyIndexpublic static final PrivilegeName CreateAnyIndex 
 - 
UnknownEnumValuepublic static final PrivilegeName UnknownEnumValue This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 
- 
 - 
Method Detail- 
valuespublic static PrivilegeName[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PrivilegeName c : PrivilegeName.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static PrivilegeName valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
createpublic static PrivilegeName create(String key) 
 
- 
 
-