Uses of Class
org.dizitart.no2.mvstore.compat.v1.mvstore.Page
-
Packages that use Page Package Description org.dizitart.no2.mvstore.compat.v1.mvstore -
-
Uses of Page in org.dizitart.no2.mvstore.compat.v1.mvstore
Fields in org.dizitart.no2.mvstore.compat.v1.mvstore declared as Page Modifier and Type Field Description PageCursorPos. pageThe page at the current level.PageRootReference. rootThe root page.Methods in org.dizitart.no2.mvstore.compat.v1.mvstore that return Page Modifier and Type Method Description PagePage. copy()Create a copy of this page.static PagePage. createNode(MVMap<?,?> map, Object[] keys, Page.PageReference[] children, long totalCount, int memory)Create a new non-leaf page.abstract PagePage. getChildPage(int index)Get the child page at the given index.PagePage.PageReference. getPage()PageMVMap. getRootPage()The current root page (may not be null).Methods in org.dizitart.no2.mvstore.compat.v1.mvstore that return types with arguments of type Page Modifier and Type Method Description CacheLongKeyLIRS<Page>MVStore. getCache()Get the cache.Methods in org.dizitart.no2.mvstore.compat.v1.mvstore with parameters of type Page Modifier and Type Method Description KMVMap. ceilingKey(Page p, K key)Get the smallest key that is larger or equal to this key, for the given root page.KMVMap. firstKey(Page p)Get the first key of this page.KMVMap. floorKey(Page p, K key)Get the largest key that is smaller or equal to this key, for the given root page.VMVMap. get(Page p, Object key)Get the value for the given key from a snapshot, or null if not found.KMVMap. higherKey(Page p, K key)Get the smallest key that is larger than the given key, for the given root page, or null if no such key exists.abstract voidPage. insertNode(int index, Object key, Page childPage)Insert a child page into this node.KMVMap. lastKey(Page p)Get the last key of this page.KMVMap. lowerKey(Page p, K key)Get the largest key that is smaller than the given key, for the given root page, or null if no such key exists.abstract voidPage. setChild(int index, Page c)Replace the child page.static CursorPosCursorPos. traverseDown(Page page, Object key)Searches for a given key and creates a breadcrumb trail through a B-tree rooted at a given Page.Constructors in org.dizitart.no2.mvstore.compat.v1.mvstore with parameters of type Page Constructor Description Cursor(Page root, K from)Cursor(Page root, K from, K to)CursorPos(Page page, int index, CursorPos parent)PageReference(Page page)
-