Examples: removeAll method (ViewEntryCollection - Java)

This agent removes all the documents in "Category 3" from the database.

import lotus.domino.*;
public class JavaAgent extends AgentBase {
  public void NotesMain() {
    try {
      Session session = getSession();
      AgentContext agentContext = session.getAgentContext();
      // (Your code goes here) 
      Database db = agentContext.getCurrentDatabase();
      View view = db.getView("By Category");
      view.setAutoUpdate(false);
      ViewEntryCollection vec =
      view.getAllEntriesByKey("Category 3", false);
      System.out.println("Number of entries found = " + 
      vec.getCount());
      System.out.println("Removing these entries from 
      database");
      vec.removeAll(true);
    } catch(Exception e) {
      e.printStackTrace();
    }
  }
}