- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 42 for createValues (0.14 seconds)
-
guava/src/com/google/common/collect/ImmutableTable.java
} @Override 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} *
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
} @LazyInit private transient @Nullable Collection<V> valuesView; @Override public Collection<V> values() { return (valuesView == null) ? valuesView = createValues() : valuesView; } Collection<V> createValues() { return new ValuesView(); } @WeakOuter private final class ValuesView extends AbstractCollection<V> { @Override public int size() {
Created: 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/RegularImmutableMap.java
return map.keySet(); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } } @Override ImmutableCollection<V> createValues() { return new Values<>(this); } private static final class Values<K, V> extends ImmutableList<V> { final RegularImmutableMap<K, V> map; Values(RegularImmutableMap<K, V> map) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:08:09 GMT 2025 - 15.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/CompactHashMap.java
} @LazyInit private transient @Nullable Collection<V> valuesView; @Override public Collection<V> values() { return (valuesView == null) ? valuesView = createValues() : valuesView; } Collection<V> createValues() { return new ValuesView(); } @WeakOuter class ValuesView extends Maps.Values<K, V> { ValuesView() { super(CompactHashMap.this); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 39.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableTable.java
} @Override 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} *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 17.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/RegularImmutableMap.java
@J2ktIncompatible @GwtIncompatible Object writeReplace() { return super.writeReplace(); } } @SuppressWarnings("unchecked") @Override ImmutableCollection<V> createValues() { return (ImmutableList<V>) new KeysOrValuesAsList(alternatingKeysAndValues, 1, size); } @Override boolean isPartialView() { return false; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 22.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/LinkedListMultimap.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 26.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/Tables.java
return fromTable.rowKeySet(); } @Override public Set<C> columnKeySet() { return fromTable.columnKeySet(); } @Override Collection<V2> createValues() { return Collections2.transform(fromTable.values(), function); } @Override public Map<R, Map<C, V2>> rowMap() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 25.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
*/ @Override public ImmutableCollection<V> values() { return (ImmutableCollection<V>) super.values(); } @Override ImmutableCollection<V> createValues() { return new Values<>(this); } @Override UnmodifiableIterator<V> valueIterator() { return new UnmodifiableIterator<V>() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 28.1K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableBiMap.java
* #entrySet}. */ @Override public ImmutableSet<V> values() { return inverse().keySet(); } @Override final ImmutableSet<V> createValues() { throw new AssertionError("should never be called"); } /** * Guaranteed to throw an exception and leave the bimap unmodified. * * @throws UnsupportedOperationException always
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 22.2K bytes - Click Count (0)