Class AbstractMapBasedMultimap.WrappedNavigableSet

    • Method Detail

      • lower

        @CheckForNull
        public V lower​(V v)
        Specified by:
        lower in interface java.util.NavigableSet<V>
      • floor

        @CheckForNull
        public V floor​(V v)
        Specified by:
        floor in interface java.util.NavigableSet<V>
      • ceiling

        @CheckForNull
        public V ceiling​(V v)
        Specified by:
        ceiling in interface java.util.NavigableSet<V>
      • higher

        @CheckForNull
        public V higher​(V v)
        Specified by:
        higher in interface java.util.NavigableSet<V>
      • pollFirst

        @CheckForNull
        public V pollFirst()
        Specified by:
        pollFirst in interface java.util.NavigableSet<V>
      • pollLast

        @CheckForNull
        public V pollLast()
        Specified by:
        pollLast in interface java.util.NavigableSet<V>
      • wrap

        private java.util.NavigableSet<V> wrap​(java.util.NavigableSet<V> wrapped)
      • descendingSet

        public java.util.NavigableSet<V> descendingSet()
        Specified by:
        descendingSet in interface java.util.NavigableSet<V>
      • descendingIterator

        public java.util.Iterator<V> descendingIterator()
        Specified by:
        descendingIterator in interface java.util.NavigableSet<V>
      • subSet

        public java.util.NavigableSet<V> subSet​(V fromElement,
                                                boolean fromInclusive,
                                                V toElement,
                                                boolean toInclusive)
        Specified by:
        subSet in interface java.util.NavigableSet<V>
      • headSet

        public java.util.NavigableSet<V> headSet​(V toElement,
                                                 boolean inclusive)
        Specified by:
        headSet in interface java.util.NavigableSet<V>
      • tailSet

        public java.util.NavigableSet<V> tailSet​(V fromElement,
                                                 boolean inclusive)
        Specified by:
        tailSet in interface java.util.NavigableSet<V>