Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

Uses of Class
de.lmu.ifi.dbs.elki.persistent.PageFile

Packages that use PageFile
de.lmu.ifi.dbs.elki.index.tree Package collects variants of tree-based index structures. 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants Package collects variants of the M-Tree. 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mkapp Package collects classes for the MkAppTree 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mkcop Package collects classes for the MkCoPTree 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mkmax Package collects classes for the MkMaxTree 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktab Package collects classes for the MkTabTree 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mtree Package collects classes for the MTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants Package collects variants of the R*-Tree. 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu Package collects classes for the DeLiCluTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rdknn Package collects classes for the RdKNNTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar Package collects classes for the RStarTree 
de.lmu.ifi.dbs.elki.persistent Package collects classes for persistent data management. 
de.lmu.ifi.dbs.elki.utilities.heap Package collects variants of heap structures. 
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree
 

Fields in de.lmu.ifi.dbs.elki.index.tree declared as PageFile
protected  PageFile<N> TreeIndex.file
          The file storing the entries of this index.
 

Constructors in de.lmu.ifi.dbs.elki.index.tree with parameters of type PageFile
AbstractNode(PageFile<N> file, int capacity, boolean isLeaf)
          Creates a new Node with the specified parameters.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants with parameters of type PageFile
AbstractMTreeNode(PageFile<N> file, int capacity, boolean isLeaf)
          Creates a new MTreeNode with the specified parameters.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mkapp
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mkapp with parameters of type PageFile
MkAppTreeNode(PageFile<MkAppTreeNode<O,D>> file, int capacity, boolean isLeaf)
          Creates a MkAppTreeNode object.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mkcop
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mkcop with parameters of type PageFile
MkCoPTreeNode(PageFile<MkCoPTreeNode<O,D>> file, int capacity, boolean isLeaf)
          Creates a MkCoPTreeNode object.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mkmax
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mkmax with parameters of type PageFile
MkMaxTreeNode(PageFile<MkMaxTreeNode<O,D>> file, int capacity, boolean isLeaf)
          Creates a new MkMaxTreeNode object.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktab
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktab with parameters of type PageFile
MkTabTreeNode(PageFile<MkTabTreeNode<O,D>> file, int capacity, boolean isLeaf)
          Creates a MkTabTreeNode object.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mtree
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mtree with parameters of type PageFile
MTreeNode(PageFile<MTreeNode<O,D>> file, int capacity, boolean isLeaf)
          Creates a new MTreeNode with the specified parameters.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants with parameters of type PageFile
AbstractRStarTreeNode(PageFile<N> file, int capacity, boolean isLeaf)
          Creates a new AbstractRStarTreeNode with the specified parameters.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu with parameters of type PageFile
DeLiCluNode(PageFile<DeLiCluNode> file, int capacity, boolean isLeaf)
          Creates a new DeLiCluNode with the specified parameters.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rdknn
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rdknn with parameters of type PageFile
RdKNNNode(PageFile<RdKNNNode<D>> file, int capacity, boolean isLeaf)
          Creates a new RdKNNNode object.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar with parameters of type PageFile
RStarTreeNode(PageFile<RStarTreeNode> file, int capacity, boolean isLeaf)
          Creates a new RStarTreeNode with the specified parameters.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.persistent
 

Subclasses of PageFile in de.lmu.ifi.dbs.elki.persistent
 class MemoryPageFile<P extends Page<P>>
          A memory based implementation of a PageFile that simulates I/O-access.
 class PersistentPageFile<P extends Page<P>>
          A PersistentPageFile stores objects persistently that implement the Page interface.
 

Fields in de.lmu.ifi.dbs.elki.persistent declared as PageFile
private  PageFile<P> AbstractPage.file
          The file that stores the pages.
 

Methods in de.lmu.ifi.dbs.elki.persistent that return PageFile
 PageFile<P> AbstractPage.getFile()
          Returns the file that stores the pages.
 

Methods in de.lmu.ifi.dbs.elki.persistent with parameters of type PageFile
 void AbstractPage.setFile(PageFile<P> file)
          Sets the page file of this page.
 void Page.setFile(PageFile<P> file)
          Sets the page file of this page.
 

Constructors in de.lmu.ifi.dbs.elki.persistent with parameters of type PageFile
AbstractPage(PageFile<P> file)
          Provides a new page object.
 

Uses of PageFile in de.lmu.ifi.dbs.elki.utilities.heap
 

Fields in de.lmu.ifi.dbs.elki.utilities.heap declared as PageFile
private  PageFile<Deap<K,V>> PersistentHeap.file
          The file storing the elements of this heap.
 

Methods in de.lmu.ifi.dbs.elki.utilities.heap with parameters of type PageFile
 void Deap.setFile(PageFile file)
          Sets the page file of this page.
 


Release 0.1 (2008-07-10_1838)