Enum AdministrativeRole
- java.lang.Object
-
- java.lang.Enum<AdministrativeRole>
-
- org.apache.directory.api.ldap.model.subtree.AdministrativeRole
-
- All Implemented Interfaces:
Serializable,Comparable<AdministrativeRole>
public enum AdministrativeRole extends Enum<AdministrativeRole>
The Administrative roles- Author:
- Apache Directory Project
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AccessControlInnerAreaThe AccessControlInnerArea roleAccessControlSpecificAreaThe AccessControlSpecificArea roleAutonomousAreaThe AutonomousArea roleCollectiveAttributeInnerAreaThe CollectiveAttributeInnerArea roleCollectiveAttributeSpecificAreaThe CollectiveAttributeSpecificArea roleSubSchemaSpecificAreaThe SubSchemaSpecificArea roleTriggerExecutionInnerAreaThe TriggerExecutionInnerArea roleTriggerExecutionSpecificAreaThe TriggerExecutionSpecificArea role
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetRole()static AdministrativeRolevalueOf(String name)Returns the enum constant of this type with the specified name.static AdministrativeRole[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AutonomousArea
public static final AdministrativeRole AutonomousArea
The AutonomousArea role
-
AccessControlSpecificArea
public static final AdministrativeRole AccessControlSpecificArea
The AccessControlSpecificArea role
-
AccessControlInnerArea
public static final AdministrativeRole AccessControlInnerArea
The AccessControlInnerArea role
-
CollectiveAttributeSpecificArea
public static final AdministrativeRole CollectiveAttributeSpecificArea
The CollectiveAttributeSpecificArea role
-
CollectiveAttributeInnerArea
public static final AdministrativeRole CollectiveAttributeInnerArea
The CollectiveAttributeInnerArea role
-
SubSchemaSpecificArea
public static final AdministrativeRole SubSchemaSpecificArea
The SubSchemaSpecificArea role
-
TriggerExecutionSpecificArea
public static final AdministrativeRole TriggerExecutionSpecificArea
The TriggerExecutionSpecificArea role
-
TriggerExecutionInnerArea
public static final AdministrativeRole TriggerExecutionInnerArea
The TriggerExecutionInnerArea role
-
-
Method Detail
-
values
public static AdministrativeRole[] 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 (AdministrativeRole c : AdministrativeRole.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdministrativeRole 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 nameNullPointerException- if the argument is null
-
getRole
public String getRole()
- Returns:
- The AdministrativeRole as a String
-
-