- Sort Score
- Result 10 results
- Languages All
Results 11 - 16 of 16 for standardContains (0.18 sec)
-
android/guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java
return standardAddAll(collection); } @Override public void clear() { standardClear(); } @Override public boolean contains(Object object) { return standardContains(object); } @Override public boolean containsAll(Collection<?> collection) { return standardContainsAll(collection); } @Override public boolean remove(Object object) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 6.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingMultisetTest.java
standardClear(); } @Override public int count(Object element) { return standardCount(element); } @Override public boolean contains(Object object) { return standardContains(object); } @Override public boolean containsAll(Collection<?> collection) { return standardContainsAll(collection); } @Override public boolean remove(Object object) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 11.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingSortedSet.java
* #tailSet}. If you override {@link #tailSet}, you may wish to override {@link #contains} to * forward to this implementation. * * @since 7.0 */ @Override protected boolean standardContains(@CheckForNull Object object) { try { // any ClassCastExceptions and NullPointerExceptions are caught @SuppressWarnings({"unchecked", "nullness"})
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 5.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingMultiset.java
* #count}, you may wish to override {@link #contains} to forward to this implementation. * * @since 7.0 */ @Override protected boolean standardContains(@CheckForNull Object object) { return count(object) > 0; } /** * A sensible definition of {@link #clear} in terms of the {@code iterator} method of {@link
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 10.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingMultisetTest.java
standardClear(); } @Override public int count(Object element) { return standardCount(element); } @Override public boolean contains(Object object) { return standardContains(object); } @Override public boolean containsAll(Collection<?> collection) { return standardContainsAll(collection); } @Override public boolean remove(Object object) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 11.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingMultiset.java
* #count}, you may wish to override {@link #contains} to forward to this implementation. * * @since 7.0 */ @Override protected boolean standardContains(@CheckForNull Object object) { return count(object) > 0; } /** * A sensible definition of {@link #clear} in terms of the {@code iterator} method of {@link
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 10.4K bytes - Viewed (0)