001/* 002 * Copyright (C) 2012 The Guava Authors 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017package com.google.common.collect; 018 019import com.google.common.annotations.Beta; 020 021import java.util.Iterator; 022import java.util.NavigableSet; 023import java.util.SortedSet; 024 025/** 026 * A navigable set which forwards all its method calls to another navigable set. Subclasses should 027 * override one or more methods to modify the behavior of the backing set as desired per the <a 028 * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>. 029 * 030 * <p><i>Warning:</i> The methods of {@code ForwardingNavigableSet} forward <i>indiscriminately</i> 031 * to the methods of the delegate. For example, overriding {@link #add} alone <i>will not</i> 032 * change the behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you 033 * should override {@code addAll} as well, either providing your own implementation, or delegating 034 * to the provided {@code standardAddAll} method. 035 * 036 * <p>Each of the {@code standard} methods uses the set's comparator (or the natural ordering of 037 * the elements, if there is no comparator) to test element equality. As a result, if the 038 * comparator is not consistent with equals, some of the standard implementations may violate the 039 * {@code Set} contract. 040 * 041 * <p>The {@code standard} methods and the collection views they return are not guaranteed to be 042 * thread-safe, even when all of the methods that they depend on are thread-safe. 043 * 044 * @author Louis Wasserman 045 * @since 12.0 046 */ 047public abstract class ForwardingNavigableSet<E> extends ForwardingSortedSet<E> 048 implements NavigableSet<E> { 049 050 /** Constructor for use by subclasses. */ 051 protected ForwardingNavigableSet() {} 052 053 @Override 054 protected abstract NavigableSet<E> delegate(); 055 056 @Override 057 public E lower(E e) { 058 return delegate().lower(e); 059 } 060 061 /** 062 * A sensible definition of {@link #lower} in terms of the {@code descendingIterator} method of 063 * {@link #headSet(Object, boolean)}. If you override {@link #headSet(Object, boolean)}, you may 064 * wish to override {@link #lower} to forward to this implementation. 065 */ 066 protected E standardLower(E e) { 067 return Iterators.getNext(headSet(e, false).descendingIterator(), null); 068 } 069 070 @Override 071 public E floor(E e) { 072 return delegate().floor(e); 073 } 074 075 /** 076 * A sensible definition of {@link #floor} in terms of the {@code descendingIterator} method of 077 * {@link #headSet(Object, boolean)}. If you override {@link #headSet(Object, boolean)}, you may 078 * wish to override {@link #floor} to forward to this implementation. 079 */ 080 protected E standardFloor(E e) { 081 return Iterators.getNext(headSet(e, true).descendingIterator(), null); 082 } 083 084 @Override 085 public E ceiling(E e) { 086 return delegate().ceiling(e); 087 } 088 089 /** 090 * A sensible definition of {@link #ceiling} in terms of the {@code iterator} method of 091 * {@link #tailSet(Object, boolean)}. If you override {@link #tailSet(Object, boolean)}, you may 092 * wish to override {@link #ceiling} to forward to this implementation. 093 */ 094 protected E standardCeiling(E e) { 095 return Iterators.getNext(tailSet(e, true).iterator(), null); 096 } 097 098 @Override 099 public E higher(E e) { 100 return delegate().higher(e); 101 } 102 103 /** 104 * A sensible definition of {@link #higher} in terms of the {@code iterator} method of 105 * {@link #tailSet(Object, boolean)}. If you override {@link #tailSet(Object, boolean)}, you may 106 * wish to override {@link #higher} to forward to this implementation. 107 */ 108 protected E standardHigher(E e) { 109 return Iterators.getNext(tailSet(e, false).iterator(), null); 110 } 111 112 @Override 113 public E pollFirst() { 114 return delegate().pollFirst(); 115 } 116 117 /** 118 * A sensible definition of {@link #pollFirst} in terms of the {@code iterator} method. If you 119 * override {@link #iterator} you may wish to override {@link #pollFirst} to forward to this 120 * implementation. 121 */ 122 protected E standardPollFirst() { 123 return Iterators.pollNext(iterator()); 124 } 125 126 @Override 127 public E pollLast() { 128 return delegate().pollLast(); 129 } 130 131 /** 132 * A sensible definition of {@link #pollLast} in terms of the {@code descendingIterator} method. 133 * If you override {@link #descendingIterator} you may wish to override {@link #pollLast} to 134 * forward to this implementation. 135 */ 136 protected E standardPollLast() { 137 return Iterators.pollNext(descendingIterator()); 138 } 139 140 protected E standardFirst() { 141 return iterator().next(); 142 } 143 144 protected E standardLast() { 145 return descendingIterator().next(); 146 } 147 148 @Override 149 public NavigableSet<E> descendingSet() { 150 return delegate().descendingSet(); 151 } 152 153 /** 154 * A sensible implementation of {@link NavigableSet#descendingSet} in terms of the other methods 155 * of {@link NavigableSet}, notably including {@link NavigableSet#descendingIterator}. 156 * 157 * <p>In many cases, you may wish to override {@link ForwardingNavigableSet#descendingSet} to 158 * forward to this implementation or a subclass thereof. 159 * 160 * @since 12.0 161 */ 162 @Beta 163 protected class StandardDescendingSet extends Sets.DescendingSet<E> { 164 /** Constructor for use by subclasses. */ 165 public StandardDescendingSet() { 166 super(ForwardingNavigableSet.this); 167 } 168 } 169 170 @Override 171 public Iterator<E> descendingIterator() { 172 return delegate().descendingIterator(); 173 } 174 175 @Override 176 public NavigableSet<E> subSet( 177 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { 178 return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive); 179 } 180 181 /** 182 * A sensible definition of {@link #subSet(Object, boolean, Object, boolean)} in terms of the 183 * {@code headSet} and {@code tailSet} methods. In many cases, you may wish to override 184 * {@link #subSet(Object, boolean, Object, boolean)} to forward to this implementation. 185 */ 186 @Beta 187 protected NavigableSet<E> standardSubSet( 188 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { 189 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); 190 } 191 192 /** 193 * A sensible definition of {@link #subSet(Object, Object)} in terms of the 194 * {@link #subSet(Object, boolean, Object, boolean)} method. If you override 195 * {@link #subSet(Object, boolean, Object, boolean)}, you may wish to override 196 * {@link #subSet(Object, Object)} to forward to this implementation. 197 */ 198 @Override 199 protected SortedSet<E> standardSubSet(E fromElement, E toElement) { 200 return subSet(fromElement, true, toElement, false); 201 } 202 203 @Override 204 public NavigableSet<E> headSet(E toElement, boolean inclusive) { 205 return delegate().headSet(toElement, inclusive); 206 } 207 208 /** 209 * A sensible definition of {@link #headSet(Object)} in terms of the 210 * {@link #headSet(Object, boolean)} method. If you override 211 * {@link #headSet(Object, boolean)}, you may wish to override 212 * {@link #headSet(Object)} to forward to this implementation. 213 */ 214 protected SortedSet<E> standardHeadSet(E toElement) { 215 return headSet(toElement, false); 216 } 217 218 @Override 219 public NavigableSet<E> tailSet(E fromElement, boolean inclusive) { 220 return delegate().tailSet(fromElement, inclusive); 221 } 222 223 /** 224 * A sensible definition of {@link #tailSet(Object)} in terms of the 225 * {@link #tailSet(Object, boolean)} method. If you override 226 * {@link #tailSet(Object, boolean)}, you may wish to override 227 * {@link #tailSet(Object)} to forward to this implementation. 228 */ 229 protected SortedSet<E> standardTailSet(E fromElement) { 230 return tailSet(fromElement, true); 231 } 232}