/external/guava/src/com/google/common/collect/ |
RegularImmutableBiMap.java | 29 final transient ImmutableMap<K, V> delegate; 32 RegularImmutableBiMap(ImmutableMap<K, V> delegate) { 35 ImmutableMap.Builder<V, K> builder = ImmutableMap.builder(); 39 ImmutableMap<V, K> backwardMap = builder.build(); 43 RegularImmutableBiMap(ImmutableMap<K, V> delegate, 49 @Override ImmutableMap<K, V> delegate() {
|
ExplicitOrdering.java | 29 final ImmutableMap<T, Integer> rankMap; 35 ExplicitOrdering(ImmutableMap<T, Integer> rankMap) { 51 private static <T> ImmutableMap<T, Integer> buildRankMap( 53 ImmutableMap.Builder<T, Integer> builder = ImmutableMap.builder();
|
ImmutableMap.java | 35 * separate map which can still change, an instance of {@code ImmutableMap} 36 * contains its own data and will <i>never</i> change. {@code ImmutableMap} is 53 public abstract class ImmutableMap<K, V> implements Map<K, V>, Serializable { 61 public static <K, V> ImmutableMap<K, V> of() { 63 return (ImmutableMap) EmptyImmutableMap.INSTANCE; 73 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { 83 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) { 92 public static <K, V> ImmutableMap<K, V> of( 103 public static <K, V> ImmutableMap<K, V> of( 114 public static <K, V> ImmutableMap<K, V> of [all...] |
ImmutableBiMap.java | 43 public abstract class ImmutableBiMap<K, V> extends ImmutableMap<K, V> 62 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1)); 71 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2)); 81 return new RegularImmutableBiMap<K, V>(ImmutableMap.of( 92 return new RegularImmutableBiMap<K, V>(ImmutableMap.of( 103 return new RegularImmutableBiMap<K, V>(ImmutableMap.of( 135 public static final class Builder<K, V> extends ImmutableMap.Builder<K, V> { 170 ImmutableMap<K, V> map = super.build(); 202 ImmutableMap<K, V> immutableMap = ImmutableMap.copyOf(map) [all...] |
ImmutableClassToInstanceMap.java | 24 * A class-to-instance map backed by an {@link ImmutableMap}. See also {@link 56 private final ImmutableMap.Builder<Class<? extends B>, B> mapBuilder 57 = ImmutableMap.builder(); 120 private final ImmutableMap<Class<? extends B>, B> delegate; 123 ImmutableMap<Class<? extends B>, B> delegate) {
|
EmptyImmutableListMultimap.java | 32 super(ImmutableMap.<Object, ImmutableList<Object>>of(), 0);
|
EmptyImmutableMultiset.java | 31 super(ImmutableMap.<Object, Integer>of(), 0);
|
EmptyImmutableSetMultimap.java | 32 super(ImmutableMap.<Object, ImmutableSet<Object>>of(), 0);
|
ImmutableListMultimap.java | 239 ImmutableMap.Builder<K, ImmutableList<V>> builder = ImmutableMap.builder(); 254 ImmutableListMultimap(ImmutableMap<K, ImmutableList<V>> map, int size) { 307 ImmutableMap.Builder<Object, ImmutableList<Object>> builder 308 = ImmutableMap.builder(); 326 ImmutableMap<Object, ImmutableList<Object>> tmpMap;
|
SingletonImmutableMap.java | 28 * Implementation of {@link ImmutableMap} with exactly one entry. 35 final class SingletonImmutableMap<K, V> extends ImmutableMap<K, V> {
|
EmptyImmutableMap.java | 32 final class EmptyImmutableMap extends ImmutableMap<Object, Object> {
|
ImmutableSortedMapFauxverideShim.java | 22 * "Overrides" the {@link ImmutableMap} static methods that lack 30 extends ImmutableMap<K, V> { 34 * {@link ImmutableMap#builder} from consumers of {@code ImmutableSortedMap}.
|
ImmutableMultiset.java | 111 ImmutableMap.Builder<E, Integer> builder = ImmutableMap.builder(); 116 // Since ImmutableMap.Builder throws an NPE if an element is null, no 147 private final transient ImmutableMap<E, Integer> map; 162 ImmutableMultiset(ImmutableMap<E, Integer> map, int size) { 345 ImmutableMap.Builder<E, Integer> builder = ImmutableMap.builder();
|
ImmutableSetMultimap.java | 268 ImmutableMap.Builder<K, ImmutableSet<V>> builder = ImmutableMap.builder(); 285 ImmutableSetMultimap(ImmutableMap<K, ImmutableSet<V>> map, int size) { 353 ImmutableMap.Builder<Object, ImmutableSet<Object>> builder 354 = ImmutableMap.builder(); 377 ImmutableMap<Object, ImmutableSet<Object>> tmpMap;
|
RegularImmutableMap.java | 26 * Implementation of {@link ImmutableMap} with two or more entries. 32 final class RegularImmutableMap<K, V> extends ImmutableMap<K, V> {
|
Maps.java | 68 * ImmutableMap#of()} instead. 116 * ImmutableMap#copyOf(Map)} instead. 135 * ImmutableMap#of()} instead. 148 * ImmutableMap#copyOf(Map)} instead. 451 public static <K, V> ImmutableMap<K, V> uniqueIndex( 454 ImmutableMap.Builder<K, V> builder = ImmutableMap.builder(); 462 * Creates an {@code ImmutableMap<String, String>} from a {@code Properties} 475 public static ImmutableMap<String, String> 477 ImmutableMap.Builder<String, String> builder = ImmutableMap.builder() [all...] |
/external/guava/javadoc/com/google/common/collect/ |
ImmutableMap.Builder.html | 7 ImmutableMap.Builder (Guava Libraries 2010.01.04) 18 parent.document.title="ImmutableMap.Builder (Guava Libraries 2010.01.04)"; 43 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ImmutableMap.Builder.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> 58 <A HREF="../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect"><B>PREV CLASS</B></A> 61 <A HREF="../../../../index.html?com/google/common/collect/ImmutableMap.Builder.html" target="_top"><B>FRAMES</B></A> 62 <A HREF="ImmutableMap.Builder.html" target="_top"><B>NO FRAMES</B></A> 93 Class ImmutableMap.Builder<K,V></H2> 96 <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>com.google.common.collect.ImmutableMap.Builder<K,V></B> 102 <DT><B>Enclosing class:</B><DD><A HREF="../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">ImmutableMap</A><<A HREF="../../../../com/google/common/collect/ImmutableMap.html" title="type parameter in (…) [all...] |
ImmutableMap.html | 7 ImmutableMap (Guava Libraries 2010.01.04) 18 parent.document.title="ImmutableMap (Guava Libraries 2010.01.04)"; 43 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ImmutableMap.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> 59 <A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect"><B>NEXT CLASS</B></A></FONT></TD> 61 <A HREF="../../../../index.html?com/google/common/collect/ImmutableMap.html" target="_top"><B>FRAMES</B></A> 62 <A HREF="ImmutableMap.html" target="_top"><B>NO FRAMES</B></A> 93 Class ImmutableMap<K,V></H2> 96 <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>com.google.common.collect.ImmutableMap<K,V></B> 106 <DT><PRE>public abstract class <B>ImmutableMap<K,V></B><DT>extends <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A><DT>implements <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A><K,V>, <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A></DL> 114 separate map which can still change, an instance of <code>ImmutableMap</code [all...] |
ImmutableBiMap.html | 96 <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">com.google.common.collect.ImmutableMap</A><K,V> 104 <DT><PRE>public abstract class <B>ImmutableBiMap<K,V></B><DT>extends <A HREF="../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">ImmutableMap</A><K,V><DT>implements <A HREF="../../../../com/google/common/collect/BiMap.html" title="interface in com.google.common.collect">BiMap</A><K,V></DL> 421 <A NAME="methods_inherited_from_class_com.google.common.collect.ImmutableMap"><!-- --></A> 424 <TH ALIGN="left"><B>Methods inherited from class com.google.common.collect.<A HREF="../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">ImmutableMap</A></B></TH> 427 <TD><CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.html#clear()">clear</A>, <A HREF="../../../../com/google/common/collect/ImmutableMap.html#put(K, V)">put</A>, <A HREF="../../../../com/google/common/collect/ImmutableMap.html#putAll(java.util.Map)">putAll</A>, <A HREF="../../../../com/google/common/collect/ImmutableMa (…) [all...] |
ImmutableBiMap.Builder.html | 96 <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">com.google.common.collect.ImmutableMap.Builder</A><K,V> 104 <DT><PRE>public static final class <B>ImmutableBiMap.Builder<K,V></B><DT>extends <A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">ImmutableMap.Builder</A><K,V></DL> 231 <DT><B>Overrides:</B><DD><CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html#put(K, V)">put</A></CODE> in class <CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">ImmutableMap.Builder</A><<A HREF="../../../../com/google/common/collect/ImmutableBiMap.Builder.html" title="type parameter in ImmutableBiMap.Builder">K</A>,<A HREF="../../../../com/google/common/collect/ImmutableBiMap.Builder.html" title="type parameter in ImmutableBiMap.Builder">V</A>></CODE></DL> 249 <DT><B>Overrides:</B><DD><CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html#putAll(java.util.Map)">putAll</A></CODE> in class <CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">ImmutableMap.Builder</A><<A HREF="../../../../com/google/common/collect/ImmutableBiMap.Builder.html" title=" (…) [all...] |
ImmutableSortedMap.Builder.html | 96 <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">com.google.common.collect.ImmutableMap.Builder</A><K,V> 104 <DT><PRE>public static final class <B>ImmutableSortedMap.Builder<K,V></B><DT>extends <A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">ImmutableMap.Builder</A><K,V></DL> 231 <DT><B>Overrides:</B><DD><CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html#put(K, V)">put</A></CODE> in class <CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">ImmutableMap.Builder</A><<A HREF="../../../../com/google/common/collect/ImmutableSortedMap.Builder.html" title="type parameter in ImmutableSortedMap.Builder">K</A>,<A HREF="../../../../com/google/common/collect/ImmutableSortedMap.Builder.html" title="type parameter in ImmutableSortedMap.Builder">V</A>></CODE></DL> 249 <DT><B>Overrides:</B><DD><CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html#putAll(java.util.Map)">putAll</A></CODE> in class <CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">ImmutableMap.Builder</A><<A HREF="../../../../com/google/common/collect/ImmutableSortedMap.Builder.html" tit (…) [all...] |
ImmutableSortedMap.html | 96 <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">com.google.common.collect.ImmutableMap</A><K,V> 104 <DT><PRE>public class <B>ImmutableSortedMap<K,V></B><DT>extends <A HREF="../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">ImmutableMap</A><K,V><DT>implements <A HREF="http://java.sun.com/javase/6/docs/api/java/util/SortedMap.html?is-external=true" title="class or interface in java.util">SortedMap</A><K,V></DL> 518 <A NAME="methods_inherited_from_class_com.google.common.collect.ImmutableMap"><!-- --></A> 521 <TH ALIGN="left"><B>Methods inherited from class com.google.common.collect.<A HREF="../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">ImmutableMap</A></B></TH> 524 <TD><CODE><A HREF="../../../../com/google/common/collect/ImmutableMap.html#clear()">clear</A>, <A HREF="../../../../com/google/common/collect/ImmutableMap.html#containsKey(java.lang.Object)">containsKey</A>, <A HREF="../../../../com/google/common/collect/ImmutableMap.html#equals(java.lang.Object)">equals</A>, <A HREF="../../../../com/google/common/collect/Immutabl (…) [all...] |
package-frame.html | 125 <A HREF="ImmutableMap.html" title="class in com.google.common.collect" target="classFrame">ImmutableMap</A> 127 <A HREF="ImmutableMap.Builder.html" title="class in com.google.common.collect" target="classFrame">ImmutableMap.Builder</A>
|
/external/guava/javadoc/com/google/common/collect/class-use/ |
ImmutableMap.html | 7 Uses of Class com.google.common.collect.ImmutableMap (Guava Libraries 2010.01.04) 18 parent.document.title="Uses of Class com.google.common.collect.ImmutableMap (Guava Libraries 2010.01.04)"; 42 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD> 62 <A HREF="ImmutableMap.html" target="_top"><B>NO FRAMES</B></A> 84 <B>Uses of Class<br>com.google.common.collect.ImmutableMap</B></H2> 90 Packages that use <A HREF="../../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">ImmutableMap</A></FONT></TH> 104 Uses of <A HREF="../../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">ImmutableMap</A> in <A HREF="../../../../../com/google/common/collect/package-summary.html">com.google.common.collect</A></FONT></TH> 112 <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../com/google/common/collect/ImmutableMap.html" title="class in com.google.common.collect">ImmutableMap</A> in <A HREF="../../../../../com/g (…) [all...] |
ImmutableMap.Builder.html | 7 Uses of Class com.google.common.collect.ImmutableMap.Builder (Guava Libraries 2010.01.04) 18 parent.document.title="Uses of Class com.google.common.collect.ImmutableMap.Builder (Guava Libraries 2010.01.04)"; 42 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD> 62 <A HREF="ImmutableMap.Builder.html" target="_top"><B>NO FRAMES</B></A> 84 <B>Uses of Class<br>com.google.common.collect.ImmutableMap.Builder</B></H2> 90 Packages that use <A HREF="../../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">ImmutableMap.Builder</A></FONT></TH> 104 Uses of <A HREF="../../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">ImmutableMap.Builder</A> in <A HREF="../../../../../com/google/common/collect/package-summary.html">com.google.common.collect</A></FONT></TH> 112 <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../com/google/common/collect/ImmutableMap.Builder.html" title="class in com.google.common.collect">ImmutableMap.Builder</A> in <A HREF="../. (…) [all...] |