Enum ADGroupType

    • 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 name
        NullPointerException - if the argument is null