Enum BulkActionUserStatus

    • Enum Constant Detail

      • SUCCESS

        public static final BulkActionUserStatus SUCCESS
        The action has successfully processed this user
      • SKIPPED

        public static final BulkActionUserStatus SKIPPED
        This user was skipped as the action didn't apply to this user (for example, changing the value of a custom field not enabled for this user)
      • ERROR

        public static final BulkActionUserStatus ERROR
        There was an error when processing this user
      • PENDING

        public static final BulkActionUserStatus PENDING
        The action has still not processed this user
      • CANCELED

        public static final BulkActionUserStatus CANCELED
        The bulk action was canceled while this user was still pending
    • Method Detail

      • values

        public static BulkActionUserStatus[] 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 (BulkActionUserStatus c : BulkActionUserStatus.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BulkActionUserStatus 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