- Sort Score
- Num 10 results
- Language All
Results 11 - 17 of 17 for standardAddAll (0.06 seconds)
-
android/guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java
} @Override public int hashCode() { return standardHashCode(); } @Override public boolean addAll(Collection<? extends T> collection) { return standardAddAll(collection); } @Override public void clear() { standardClear(); } @Override public boolean contains(Object object) { return standardContains(object); }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingNavigableSet.java
* the behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you should * override {@code addAll} as well, either providing your own implementation, or delegating to the * provided {@code standardAddAll} method. * * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code * default} methods. Instead, it inherits their default implementations. When those implementationsCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 8.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingSortedSet.java
* the behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you should * override {@code addAll} as well, either providing your own implementation, or delegating to the * provided {@code standardAddAll} method. * * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code * default} methods. Instead, it inherits their default implementations. When those implementationsCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Feb 12 16:28:01 GMT 2025 - 5.7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingMultiset.java
* {@link #addAll(Collection)} to forward to this implementation. * * @since 7.0 */ @Override protected boolean standardAddAll(Collection<? extends E> elementsToAdd) { return Multisets.addAllImpl(this, elementsToAdd); } /** * A sensible definition of {@link #remove(Object)} in terms of {@link #remove(Object, int)}. IfCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/ForwardingMultisetTest.java
} @Override protected Multiset<T> delegate() { return backingCollection; } @Override public boolean addAll(Collection<? extends T> collection) { return standardAddAll(collection); } @Override public boolean add(T element) { return standardAdd(element); } @Override public void clear() { standardClear(); }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Jul 16 20:34:52 GMT 2025 - 11.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingMultiset.java
* {@link #addAll(Collection)} to forward to this implementation. * * @since 7.0 */ @Override protected boolean standardAddAll(Collection<? extends E> elementsToAdd) { return Multisets.addAllImpl(this, elementsToAdd); } /** * A sensible definition of {@link #remove(Object)} in terms of {@link #remove(Object, int)}. IfCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MultimapsTest.java
return super.add(element); } @Override public boolean addAll(Collection<? extends Integer> collection) { return standardAddAll(collection); } }; } }; Map<Color, Collection<Integer>> map = Maps.newEnumMap(Color.class);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 28 16:03:47 GMT 2025 - 38.9K bytes - Click Count (0)