Class BTreeVisitor.LTEVisitor<Key extends Comparable<Key>,​Value>

    • Constructor Detail

      • LTEVisitor

        public LTEVisitor​(Key value)
    • Method Detail

      • isInterestedInKeysBetween

        public boolean isInterestedInKeysBetween​(Key first,
                                                 Key second)
        Description copied from interface: BTreeVisitor
        Do you want to visit the range of BTree entries between the first and and second key?
        Parameters:
        first - if null indicates the range of values before the second key.
        second - if null indicates the range of values after the first key.
        Returns:
        true if you want to visit the values between the first and second key.
      • isInterestedInKey

        public boolean isInterestedInKey​(Key key)