Enum ActiveDirectoryGroupType
java.lang.Object
java.lang.Enum<ActiveDirectoryGroupType>
com.blackberry.workspaces.sdk.api.enums.ActiveDirectoryGroupType
- All Implemented Interfaces:
Serializable
,Comparable<ActiveDirectoryGroupType>
,java.lang.constant.Constable
public enum ActiveDirectoryGroupType extends Enum<ActiveDirectoryGroupType>
An enum of Active Directory Group types
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description AD_BUILTIN_SECURITY_GROUP
Built-in security groupAD_DOMAIN_LOCAL_DISTRIBUTION_GROUP
Domain local distribution groupAD_DOMAIN_LOCAL_SECURITY_GROUP
Domain local security groupAD_GLOBAL_DISTRIBUTION_GROUP
Global distribution groupAD_GLOBAL_SECURITY_GROUP
Global security groupAD_UNIVERSAL_DISTRIBUTION_GROUP
Universal distribution groupAD_UNIVERSAL_SECURITY_GROUP
Universal security groupAD_UNKNOWN_GROUP_TYPE
Unknown group type -
Method Summary
Modifier and Type Method Description static ActiveDirectoryGroupType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ActiveDirectoryGroupType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
AD_DOMAIN_LOCAL_SECURITY_GROUP
Domain local security group -
AD_GLOBAL_SECURITY_GROUP
Global security group -
AD_UNIVERSAL_SECURITY_GROUP
Universal security group -
AD_BUILTIN_SECURITY_GROUP
Built-in security group -
AD_DOMAIN_LOCAL_DISTRIBUTION_GROUP
Domain local distribution group -
AD_GLOBAL_DISTRIBUTION_GROUP
Global distribution group -
AD_UNIVERSAL_DISTRIBUTION_GROUP
Universal distribution group -
AD_UNKNOWN_GROUP_TYPE
Unknown group type
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-