Interface RLexSortedSet

    • Method Detail

      • pollFirst

        String pollFirst()
      • revRank

        Integer revRank​(String o)
        Returns rank of value, with the scores ordered from high to low.
        Parameters:
        o - - object
        Returns:
        rank or null if value does not exist
      • removeRangeTail

        int removeRangeTail​(String fromElement,
                            boolean fromInclusive)
      • removeRangeHead

        int removeRangeHead​(String toElement,
                            boolean toInclusive)
      • removeRange

        int removeRange​(String fromElement,
                        boolean fromInclusive,
                        String toElement,
                        boolean toInclusive)
      • countTail

        int countTail​(String fromElement,
                      boolean fromInclusive)
      • countHead

        int countHead​(String toElement,
                      boolean toInclusive)
      • rangeTail

        Collection<String> rangeTail​(String fromElement,
                                     boolean fromInclusive,
                                     int offset,
                                     int count)
      • rangeHead

        Collection<String> rangeHead​(String toElement,
                                     boolean toInclusive,
                                     int offset,
                                     int count)
      • range

        Collection<String> range​(String fromElement,
                                 boolean fromInclusive,
                                 String toElement,
                                 boolean toInclusive,
                                 int offset,
                                 int count)
      • rangeTailReversed

        Collection<String> rangeTailReversed​(String fromElement,
                                             boolean fromInclusive,
                                             int offset,
                                             int count)
      • rangeHeadReversed

        Collection<String> rangeHeadReversed​(String toElement,
                                             boolean toInclusive,
                                             int offset,
                                             int count)
      • rangeReversed

        Collection<String> rangeReversed​(String fromElement,
                                         boolean fromInclusive,
                                         String toElement,
                                         boolean toInclusive,
                                         int offset,
                                         int count)
      • count

        int count​(String fromElement,
                  boolean fromInclusive,
                  String toElement,
                  boolean toInclusive)