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 Tree-based index structures 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants M-Tree and variants. 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.mkapp MkAppTree 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.mkcop MkCoPTree 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.mkmax MkMaxTree 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.mktab MkTabTree 
de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mtree MTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants R*-Tree and variants. 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu DeLiCluTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rdknn RdKNNTree 
de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar RStarTree 
de.lmu.ifi.dbs.elki.persistent Persistent data management. 
de.lmu.ifi.dbs.elki.utilities.heap 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, Class<? super E> eclass)
          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, Class<? super E> eclass)
          Creates a new MTreeNode with the specified parameters.
 

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

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

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

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

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

Constructors in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.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.mktrees.mktab
 

Constructors in de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.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, Class<? super E> eclass)
          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,N>> 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 OnDiskArrayPageFile<P extends Page<P>>
          A OnDiskArrayPageFile stores objects persistently that implement the Page interface.
 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 Page.setFile(PageFile<P> file)
          Sets the page file of this page.
 void AbstractPage.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<Deap<K,V>> file)
          Sets the page file of this page.
 


Release 0.3 (2010-03-31_1612)