Package org.archive.wayback.bdb

Examples of org.archive.wayback.bdb.BDBRecord


  public ArrayList<AdministrativeExclusionRules> matchRules(String surt) throws DatabaseException {
    BDBRecordIterator itr = db.recordIterator(surt);
    ArrayList<AdministrativeExclusionRules> matching =
      new ArrayList<AdministrativeExclusionRules>();
    while(itr.hasNext()) {
      BDBRecord record = (BDBRecord) itr.next();
      AdministrativeExclusionRules rules = recordToRules(record);
      if(rules.getSurtPrefix().startsWith(surt)) {
        matching.add(rules);
      }
    }
View Full Code Here

TOP

Related Classes of org.archive.wayback.bdb.BDBRecord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.