Enum ADGroupType
- java.lang.Object
-
- java.lang.Enum<ADGroupType>
-
- com.blackberry.workspaces.api.sdk.enums.ADGroupType
-
- All Implemented Interfaces:
Serializable
,Comparable<ADGroupType>
public enum ADGroupType extends Enum<ADGroupType>
This enum exists to minimise client-side options (verify we're requesting AD groups).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_BUILTIN_GROUPS
All built-in groupsALL_DISTRIBUTION_GROUPS
All distribution groupsALL_DOMAIN_LOCAL_DISTRIBUTION_GROUPS
All domain local distribution groupsALL_DOMAIN_LOCAL_GROUPS
All domain local groupsALL_DOMAIN_LOCAL_SECURITY_GROUPS
All domain local security groupsALL_GLOBAL_DISTRIBUTION_GROUPS
All global distribution groupsALL_GLOBAL_GROUPS
All global groupsALL_GLOBAL_SECURITY_GROUPS
All global security groupsALL_GROUPS
All groupsALL_SECURITY_GROUPS
All security groupsALL_UNIVERSAL_DISTRIBUTION_GROUPS
All universal distribution groupsALL_UNIVERSAL_GROUPS
All universal groupsALL_UNIVERSAL_SECURITY_GROUPS
All universal security groups
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ADGroupType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ADGroupType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_GROUPS
public static final ADGroupType ALL_GROUPS
All groups
-
ALL_SECURITY_GROUPS
public static final ADGroupType ALL_SECURITY_GROUPS
All security groups
-
ALL_DISTRIBUTION_GROUPS
public static final ADGroupType ALL_DISTRIBUTION_GROUPS
All distribution groups
-
ALL_BUILTIN_GROUPS
public static final ADGroupType ALL_BUILTIN_GROUPS
All built-in groups
-
ALL_GLOBAL_GROUPS
public static final ADGroupType ALL_GLOBAL_GROUPS
All global groups
-
ALL_DOMAIN_LOCAL_GROUPS
public static final ADGroupType ALL_DOMAIN_LOCAL_GROUPS
All domain local groups
-
ALL_UNIVERSAL_GROUPS
public static final ADGroupType ALL_UNIVERSAL_GROUPS
All universal groups
-
ALL_GLOBAL_SECURITY_GROUPS
public static final ADGroupType ALL_GLOBAL_SECURITY_GROUPS
All global security groups
-
ALL_DOMAIN_LOCAL_SECURITY_GROUPS
public static final ADGroupType ALL_DOMAIN_LOCAL_SECURITY_GROUPS
All domain local security groups
-
ALL_UNIVERSAL_SECURITY_GROUPS
public static final ADGroupType ALL_UNIVERSAL_SECURITY_GROUPS
All universal security groups
-
ALL_GLOBAL_DISTRIBUTION_GROUPS
public static final ADGroupType ALL_GLOBAL_DISTRIBUTION_GROUPS
All global distribution groups
-
ALL_DOMAIN_LOCAL_DISTRIBUTION_GROUPS
public static final ADGroupType ALL_DOMAIN_LOCAL_DISTRIBUTION_GROUPS
All domain local distribution groups
-
ALL_UNIVERSAL_DISTRIBUTION_GROUPS
public static final ADGroupType ALL_UNIVERSAL_DISTRIBUTION_GROUPS
All universal distribution groups
-
-
Method Detail
-
values
public static ADGroupType[] 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 (ADGroupType c : ADGroupType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ADGroupType 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
-
-