Package elki.persistent
Class MemoryPageFileFactory<P extends Page>
- java.lang.Object
-
- elki.persistent.AbstractPageFileFactory<P>
-
- elki.persistent.MemoryPageFileFactory<P>
-
- Type Parameters:
P
- Page type
- All Implemented Interfaces:
PageFileFactory<P>
public class MemoryPageFileFactory<P extends Page> extends AbstractPageFileFactory<P>
Page file factory for memory page files.- Since:
- 0.6.0
- Author:
- Erich Schubert
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MemoryPageFileFactory.Par
Parameterization class.
-
Field Summary
-
Fields inherited from class elki.persistent.AbstractPageFileFactory
pageSize
-
-
Constructor Summary
Constructors Constructor Description MemoryPageFileFactory(int pageSize)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PageFile<P>
newPageFile(java.lang.Class<P> cls)
Make a new page file.-
Methods inherited from class elki.persistent.AbstractPageFileFactory
getPageSize
-
-
-
-
Method Detail
-
newPageFile
public PageFile<P> newPageFile(java.lang.Class<P> cls)
Description copied from interface:PageFileFactory
Make a new page file.- Parameters:
cls
- Page class- Returns:
- Page file
-
-