Enum ActiveDirectoryGroupType

    • Enum Constant Detail

      • AD_DOMAIN_LOCAL_SECURITY_GROUP

        public static final ActiveDirectoryGroupType AD_DOMAIN_LOCAL_SECURITY_GROUP
        Domain local 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
    • 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 name
        NullPointerException - if the argument is null