Uses of Class
org.h2.mvstore.Page.PageReference
-
Packages that use Page.PageReference Package Description org.h2.mvstore A persistent storage for tree maps. -
-
Uses of Page.PageReference in org.h2.mvstore
Fields in org.h2.mvstore declared as Page.PageReference Modifier and Type Field Description private Page.PageReference<K,V>[]Page.NonLeaf. childrenThe child page references.(package private) static Page.PageReferencePage.PageReference. EMPTYSingleton object used when arrays of PageReference have not yet been filled.private static Page.PageReference[]Page. SINGLE_EMPTYMethods in org.h2.mvstore that return Page.PageReference Modifier and Type Method Description private static <K,V>
Page.PageReference<K,V>[]Page.IncompleteNonLeaf. constructEmptyPageRefs(int size)static <K,V>
Page.PageReference<K,V>[]Page. createRefStorage(int size)Create an array of page references.static <X,Y>
Page.PageReference<X,Y>Page.PageReference. empty()Get an empty page reference.Methods in org.h2.mvstore with parameters of type Page.PageReference Modifier and Type Method Description static <K,V>
Page<K,V>Page. createNode(MVMap<K,V> map, K[] keys, Page.PageReference<K,V>[] children, long totalCount, int memory)Create a new non-leaf page.Constructors in org.h2.mvstore with parameters of type Page.PageReference Constructor Description NonLeaf(MVMap<K,V> map, K[] keys, Page.PageReference<K,V>[] children, long totalCount)NonLeaf(MVMap<K,V> map, Page.NonLeaf<K,V> source, Page.PageReference<K,V>[] children, long totalCount)
-