- Sort Score
- Num 10 results
- Language All
Results 31 - 34 of 34 for valueIterator (0.07 seconds)
-
guava/src/com/google/common/collect/ImmutableTable.java
public ImmutableCollection<V> values() { return (ImmutableCollection<V>) super.values(); } @Override abstract ImmutableCollection<V> createValues(); @Override final Iterator<V> valuesIterator() { throw new AssertionError("should never be called"); } /** * {@inheritDoc} * * @throws NullPointerException if {@code columnKey} is {@code null} */ @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 17.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CompactHashMap.java
} @Override public void clear() { CompactHashMap.this.clear(); } @Override public Iterator<V> iterator() { return valuesIterator(); } } Iterator<V> valuesIterator() { Map<K, V> delegate = delegateOrNull(); if (delegate != null) { return delegate.values().iterator(); } return new Itr<V>() { @OverrideCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 35.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ArrayTable.java
* * @return collection of values */ @Override public Collection<@Nullable V> values() { return super.values(); } @Override Iterator<@Nullable V> valuesIterator() { return new AbstractIndexedListIterator<@Nullable V>(size()) { @Override protected @Nullable V get(int index) { return getValue(index); } }; } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 26.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ArrayTable.java
* * @return collection of values */ @Override public Collection<@Nullable V> values() { return super.values(); } @Override Iterator<@Nullable V> valuesIterator() { return new AbstractIndexedListIterator<@Nullable V>(size()) { @Override protected @Nullable V get(int index) { return getValue(index); } }; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 13 19:39:21 GMT 2025 - 26.2K bytes - Click Count (0)