Module swim.db
Package swim.db

Class STreePage

    • Constructor Detail

      • STreePage

        public STreePage()
    • Method Detail

      • isSTreePage

        public boolean isSTreePage()
        Overrides:
        isSTreePage in class Page
      • contains

        public abstract boolean contains​(Value value)
      • getSlot

        public abstract Slot getSlot​(int x)
      • get

        public abstract Value get​(long index)
      • getEntry

        public abstract Slot getEntry​(long index)
      • updated

        public abstract STreePage updated​(long index,
                                          Value newValue,
                                          long newVersion)
      • inserted

        public abstract STreePage inserted​(long index,
                                           Value key,
                                           Value newValue,
                                           long newVersion)
      • removed

        public abstract STreePage removed​(long index,
                                          long newVersion)
      • removed

        public abstract STreePage removed​(Object object,
                                          long newVersion)
      • drop

        public abstract STreePage drop​(long lower,
                                       long newVersion)
      • take

        public abstract STreePage take​(long upper,
                                       long newVersion)
      • indexOf

        public abstract long indexOf​(Object object)
      • lastIndexOf

        public abstract long lastIndexOf​(Object object)
      • copyToArray

        public abstract void copyToArray​(Object[] array,
                                         int offset)
      • balanced

        public abstract STreePage balanced​(long newVersion)
      • split

        public abstract STreeNode split​(int x,
                                        long newVersion)
      • splitLeft

        public abstract STreePage splitLeft​(int x,
                                            long newVersion)
      • splitRight

        public abstract STreePage splitRight​(int x,
                                             long newVersion)
      • evacuated

        public abstract STreePage evacuated​(int post,
                                            long version)
        Specified by:
        evacuated in class Page
      • committed

        public abstract STreePage committed​(int zone,
                                            long base,
                                            long version)
        Specified by:
        committed in class Page
      • depthCursor

        public abstract Cursor<Slot> depthCursor​(int maxDepth)
      • deltaCursor

        public abstract Cursor<Slot> deltaCursor​(long sinceVersion)