Enum ActiveDirectoryGroupType
- java.lang.Object
-
- java.lang.Enum<ActiveDirectoryGroupType>
-
- com.blackberry.workspaces.sdk.api.enums.ActiveDirectoryGroupType
-
- All Implemented Interfaces:
Serializable
,Comparable<ActiveDirectoryGroupType>
public enum ActiveDirectoryGroupType extends Enum<ActiveDirectoryGroupType>
An enum of Active Directory Group types
-
-
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
All Methods Static Methods Concrete Methods 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.
-
-
-
Enum Constant Detail
-
AD_DOMAIN_LOCAL_SECURITY_GROUP
public static final ActiveDirectoryGroupType AD_DOMAIN_LOCAL_SECURITY_GROUP
Domain local security group
-
AD_GLOBAL_SECURITY_GROUP
public static final ActiveDirectoryGroupType AD_GLOBAL_SECURITY_GROUP
Global security group
-
AD_UNIVERSAL_SECURITY_GROUP
public static final ActiveDirectoryGroupType AD_UNIVERSAL_SECURITY_GROUP
Universal security group
-
AD_BUILTIN_SECURITY_GROUP
public static final ActiveDirectoryGroupType AD_BUILTIN_SECURITY_GROUP
Built-in security group
-
AD_DOMAIN_LOCAL_DISTRIBUTION_GROUP
public static final ActiveDirectoryGroupType AD_DOMAIN_LOCAL_DISTRIBUTION_GROUP
Domain local distribution group
-
AD_GLOBAL_DISTRIBUTION_GROUP
public static final ActiveDirectoryGroupType AD_GLOBAL_DISTRIBUTION_GROUP
Global distribution group
-
AD_UNIVERSAL_DISTRIBUTION_GROUP
public static final ActiveDirectoryGroupType AD_UNIVERSAL_DISTRIBUTION_GROUP
Universal distribution group
-
AD_UNKNOWN_GROUP_TYPE
public static final ActiveDirectoryGroupType AD_UNKNOWN_GROUP_TYPE
Unknown group type
-
-
Method Detail
-
values
public static ActiveDirectoryGroupType[] 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 (ActiveDirectoryGroupType c : ActiveDirectoryGroupType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActiveDirectoryGroupType 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
-
-