Uses of Interface
org.biojava.bio.seq.db.IDMaker

Packages that use IDMaker
org.biojava.bio.seq.db Collections of biological sequence data. 
 

Uses of IDMaker in org.biojava.bio.seq.db
 

Classes in org.biojava.bio.seq.db that implement IDMaker
static class IDMaker.ByName
           
static class IDMaker.ByURN
           
 

Fields in org.biojava.bio.seq.db declared as IDMaker
static IDMaker IDMaker.byURN
          A simple implementation of IDMaker that hashes by URN.
static IDMaker IDMaker.byName
          A simple implementation of IDMaker that hashes by sequence name.
 

Methods in org.biojava.bio.seq.db that return IDMaker
 IDMaker HashSequenceDB.getIDMaker()
          Retrieve the IDMaker associated with this database.
 

Constructors in org.biojava.bio.seq.db with parameters of type IDMaker
HashSequenceDB(IDMaker idMaker)
          Generate a HashSequenceDB object that will use idMaker to generate ids for sequences and have a null name.
HashSequenceDB(IDMaker idMaker, java.lang.String name)
          Generate a HashSequenceDB object that will use idMaker to generate ids for sequences and have the requested name.
IndexedSequenceDB(IDMaker idMaker, IndexStore indexStore)
          Create an IndexedSequenceDB by specifying both the IDMaker and IndexStore used.