Lines Matching full:link
53 * Static utility methods pertaining to {@link Set} instances. Also see this
54 * class's counterparts {@link Lists} and {@link Maps}.
66 * Internally, the returned set will be backed by an {@link EnumSet}.
84 * Internally, the returned set will be backed by an {@link EnumSet}.
115 * Unlike {@link EnumSet#copyOf(Collection)}, this method does not produce an
145 * <p><b>Note:</b> if mutability is not required, use {@link
148 * <p><b>Note:</b> if {@code E} is an {@link Enum} type, use {@link
162 * non-null, use {@link ImmutableSet#of(Object[])} instead.
164 * <p><b>Note:</b> if {@code E} is an {@link Enum} type, use {@link
195 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead.
197 * <p><b>Note:</b> if {@code E} is an {@link Enum} type, use
198 * {@link #newEnumSet(Iterable, Class)} instead.
218 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead.
220 * <p><b>Note:</b> if {@code E} is an {@link Enum} type, you should create an
221 * {@link EnumSet} instead.
239 * <p><b>Note:</b> if mutability is not required, use {@link
253 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead.
280 * <p><b>Note:</b> if mutability is not required, use {@link
294 * <p><b>Note:</b> if mutability is not required, use {@link
299 * {@link TreeSet#TreeSet(SortedSet)}, which returns a {@code TreeSet} with
332 * the specified collection. If the collection is an {@link EnumSet}, this
333 * method has the same behavior as {@link EnumSet#complementOf}. Otherwise,
336 * {@link #complementOf(Collection, Class)} instead of this method.
359 * {@link EnumSet#complementOf}, but can act on any input collection, as long
394 * backing map. In essence, this factory method provides a {@link Set}
395 * implementation corresponding to any {@link Map} implementation. There is no
396 * need to use this method on a {@link Map} implementation that already has a
397 * corresponding {@link Set} implementation (such as {@link HashMap} or
398 * {@link TreeMap}).
499 * as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or
500 * {@link #copyInto} and forget the {@code SetView} itself.
511 * a {@link TreeSet} using a comparator that is inconsistent with {@link
541 * different equivalence relations (as {@link HashSet}, {@link TreeSet}, and
542 * the {@link Map#keySet} of an {@link IdentityHashMap} all are).
682 * {@code addAll()} methods throw an {@link IllegalArgumentException} if an
758 * @param <B> any common base class shared by all axes (often just {@link
803 * @param <B> any common base class shared by all axes (often just {@link