HomeSort by relevance Sort by last modified time
    Searched full:supplier (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/guava/src/com/google/common/base/
Suppliers.java 40 * Returns a new supplier which is the composition of the provided function
41 * and supplier. In other words, the new supplier's value will be computed by
43 * {@code function} to that value. Note that the resulting supplier will not
46 public static <F, T> Supplier<T> compose(
47 Function<? super F, T> function, Supplier<F> first) {
54 implements Supplier<T>, Serializable {
56 final Supplier<? extends F> first;
59 Supplier<? extends F> first) {
70 * Returns a supplier which caches the instance retrieved during the firs
    [all...]
Supplier.java 30 public interface Supplier<T> {
  /external/guava/javadoc/com/google/common/base/
Suppliers.html 58 &nbsp;<A HREF="../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base"><B>PREV CLASS</B></A>&nbsp;
135 <CODE>&lt;F,T&gt; <A HREF="../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;T&gt;</CODE></FONT></TD>
139 <TD><CODE><B><A HREF="../../../../com/google/common/base/Suppliers.html#compose(com.google.common.base.Function, com.google.common.base.Supplier)">compose</A></B>(<A HREF="../../../../com/google/common/base/Function.html" title="interface in com.google.common.base">Function</A>&lt;? super F,T&gt;&nbsp;function,
140 <A HREF="../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;F&gt;&nbsp;first)</CODE>
143 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new supplier which is the composition of the provided function
144 and supplier.</TD>
152 <CODE>&lt;T&gt; <A HREF="../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;T&gt;</CODE></FONT></TD
    [all...]
Supplier.html 7 Supplier (Guava Libraries 2010.01.04)
18 parent.document.title="Supplier (Guava Libraries 2010.01.04)";
43 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Supplier.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>
61 <A HREF="../../../../index.html?com/google/common/base/Supplier.html" target="_top"><B>FRAMES</B></A> &nbsp;
62 &nbsp;<A HREF="Supplier.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
93 Interface Supplier&lt;T&gt;</H2>
96 <DT><PRE>public interface <B>Supplier&lt;T&gt;</B></DL>
126 <CODE>&nbsp;<A HREF="../../../../com/google/common/base/Supplier.html" title="type parameter in Supplier">T</A></CODE></FONT></TD>
127 <TD><CODE><B><A HREF="../../../../com/google/common/base/Supplier.html#get()">get</A></B>()</CODE
    [all...]
package-frame.html 34 <A HREF="Supplier.html" title="interface in com.google.common.base" target="classFrame"><I>Supplier</I></A></FONT></TD>
package-use.html 193 <TD><B><A HREF="../../../../com/google/common/base/class-use/Supplier.html#com.google.common.base"><B>Supplier</B></A></B>
220 <TD><B><A HREF="../../../../com/google/common/base/class-use/Supplier.html#com.google.common.collect"><B>Supplier</B></A></B>
package-summary.html 116 <TD WIDTH="15%"><B><A HREF="../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier&lt;T&gt;</A></B></TD>
  /external/guava/javadoc/com/google/common/base/class-use/
Supplier.html 7 Uses of Interface com.google.common.base.Supplier (Guava Libraries 2010.01.04)
18 parent.document.title="Uses of Interface com.google.common.base.Supplier (Guava Libraries 2010.01.04)";
42 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
62 &nbsp;<A HREF="Supplier.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
84 <B>Uses of Interface<br>com.google.common.base.Supplier</B></H2>
90 Packages that use <A HREF="../../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A></FONT></TH>
108 Uses of <A HREF="../../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A> in <A HREF="../../../../../com/google/common/base/package-summary.html">com.google.common.base</A></FONT></TH>
116 <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../com/google/common/base/package-summary.html">com.google.common.base</A> that return <A HREF="../../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A></FONT></TH
    [all...]
Function.html 237 <CODE>&lt;F,T&gt; <A HREF="../../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;T&gt;</CODE></FONT></TD>
241 <TD><CODE><B>Suppliers.</B><B><A HREF="../../../../../com/google/common/base/Suppliers.html#compose(com.google.common.base.Function, com.google.common.base.Supplier)">compose</A></B>(<A HREF="../../../../../com/google/common/base/Function.html" title="interface in com.google.common.base">Function</A>&lt;? super F,T&gt;&nbsp;function,
242 <A HREF="../../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;F&gt;&nbsp;first)</CODE>
245 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a new supplier which is the composition of the provided function
246 and supplier.</TD>
    [all...]
  /external/guava/src/com/google/common/io/
CharStreams.java 112 * object from the given supplier.
115 * @param to the output supplier
161 * Opens a {@link Readable} object from the supplier, copies all characters
223 * @param supplier the factory to read from
228 InputSupplier<R> supplier) throws IOException {
229 return toStringBuilder(supplier).toString();
250 * @param supplier the factory to read from
254 InputSupplier<R> supplier) throws IOException {
256 R r = supplier.getInput();
271 * @param supplier the factory to read fro
    [all...]
ByteStreams.java 82 * Writes a byte array to an output stream from the given supplier.
85 * @param to the output supplier
129 * Opens an input stream from the supplier, copies all bytes from the
215 * @param supplier the factory
219 InputSupplier<? extends InputStream> supplier) throws IOException {
221 InputStream in = supplier.getInput();
544 public static long length(InputSupplier<? extends InputStream> supplier)
548 InputStream in = supplier.getInput();
668 * @param supplier the input stream factory
673 public static <T> T readBytes(InputSupplier<? extends InputStream> supplier,
    [all...]
FileBackedOutputStream.java 43 private final InputSupplier<InputStream> supplier; field in class:FileBackedOutputStream
94 supplier = new InputSupplier<InputStream>() {
108 supplier = new InputSupplier<InputStream>() {
117 * Returns a supplier that may be used to retrieve the data buffered
121 return supplier;
  /external/guava/src/com/google/common/collect/
Multimaps.java 26 import com.google.common.base.Supplier;
93 * @param factory supplier of new, empty collections that will each hold all
98 final Supplier<? extends Collection<V>> factory) {
103 transient Supplier<? extends Collection<V>> factory;
106 Supplier<? extends Collection<V>> factory) {
129 factory = (Supplier<? extends Collection<V>>) stream.readObject();
170 * @param factory supplier of new, empty lists that will each hold all values
175 Map<K, Collection<V>> map, final Supplier<? extends List<V>> factory) {
181 transient Supplier<? extends List<V>> factory;
184 Supplier<? extends List<V>> factory)
    [all...]
  /external/guava/javadoc/com/google/common/io/
ByteStreams.html 144 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Opens an input stream from the supplier, copies all bytes from the
178 <TD><CODE><B><A HREF="../../../../com/google/common/io/ByteStreams.html#getChecksum(com.google.common.io.InputSupplier, java.util.zip.Checksum)">getChecksum</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A>&gt;&nbsp;supplier,
187 <TD><CODE><B><A HREF="../../../../com/google/common/io/ByteStreams.html#getDigest(com.google.common.io.InputSupplier, java.security.MessageDigest)">getDigest</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A>&gt;&nbsp;supplier,
207 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Joins multiple <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io"><CODE>InputStream</CODE></A> suppliers into a single supplier.</TD>
212 <TD><CODE><B><A HREF="../../../../com/google/common/io/ByteStreams.html#length(com.google.common.io.InputSupplier)">length</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A>&gt;&nbsp;supplier)</CODE>
293 <TD><CODE><B><A HREF="../../../../com/google/common/io/ByteStreams.html#readBytes(com.google.common.io.InputSupplier, com.google.common.io.ByteProcessor)">readBytes</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A>&gt;&nbsp;supplier,
334 <TD><CODE><B><A HREF="../../../../com/google/common/io/ByteStreams.html#slice(com.google.common.io.InputSupplier, long, long)">slice</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A>&gt;&nbsp;supplier,
340 an underlying supplier, where each stream starts at the given
354 <TD><CODE><B><A HREF="../../../../com/google/common/io/ByteStreams.html#toByteArray(com.google.common.io.InputSupplier)">toByteArray</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A>&gt;&nbsp;supplier)</CODE>
366 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Writes a byte array to an output stream from the given supplier.</TD
    [all...]
CharStreams.html 158 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Opens a <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Readable.html?is-external=true" title="class or interface in java.lang"><CODE>Readable</CODE></A> object from the supplier, copies all characters
205 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Joins multiple <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Reader.html?is-external=true" title="class or interface in java.io"><CODE>Reader</CODE></A> suppliers into a single supplier.</TD>
248 <TD><CODE><B><A HREF="../../../../com/google/common/io/CharStreams.html#readFirstLine(com.google.common.io.InputSupplier)">readFirstLine</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;R&gt;&nbsp;supplier)</CODE>
266 <TD><CODE><B><A HREF="../../../../com/google/common/io/CharStreams.html#readLines(com.google.common.io.InputSupplier)">readLines</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;R&gt;&nbsp;supplier)</CODE>
284 <TD><CODE><B><A HREF="../../../../com/google/common/io/CharStreams.html#readLines(com.google.common.io.InputSupplier, com.google.common.io.LineProcessor)">readLines</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;R&gt;&nbsp;supplier,
321 <TD><CODE><B><A HREF="../../../../com/google/common/io/CharStreams.html#toString(com.google.common.io.InputSupplier)">toString</A></B>(<A HREF="../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;R&gt;&nbsp;supplier)</CODE>
352 object from the given supplier.</TD>
    [all...]
  /external/guava/javadoc/com/google/common/collect/
Multimaps.html 188 <TD><CODE><B><A HREF="../../../../com/google/common/collect/Multimaps.html#newListMultimap(java.util.Map, com.google.common.base.Supplier)">newListMultimap</A></B>(<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>&lt;K,<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;V&gt;&gt;&nbsp;map,
189 <A HREF="../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;V&gt;&gt;&nbsp;factory)</CODE>
204 <TD><CODE><B><A HREF="../../../../com/google/common/collect/Multimaps.html#newMultimap(java.util.Map, com.google.common.base.Supplier)">newMultimap</A></B>(<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>&lt;K,<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;V&gt;&gt;&nbsp;map,
205 <A HREF="../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;V&gt;&gt;&nbsp;factory)</CODE>
220 <TD><CODE><B><A HREF="../../../../com/google/common/collect/Multimaps.html#newSetMultimap(java.util.Map, com.google.common.base.Supplier)">newSetMultimap</A></B>(<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>&lt;K,<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;V&gt;&gt;&nbsp;map,
221 <A HREF="../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;V&gt;&gt;&nbsp;factory)</CODE>
236 <TD><CODE><B><A HREF="../../../../com/google/common/collect/Multimaps.html#newSortedSetMultimap(java.util.Map, com.google.common.base.Supplier)">newSortedSetMultimap</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Map.html?i (…)
    [all...]
  /external/guava/javadoc/com/google/common/io/class-use/
InputSupplier.html 119 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a supplier that may be used to retrieve the data buffered
144 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Joins multiple <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io"><CODE>InputStream</CODE></A> suppliers into a single supplier.</TD>
152 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Joins multiple <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Reader.html?is-external=true" title="class or interface in java.io"><CODE>Reader</CODE></A> suppliers into a single supplier.</TD>
234 <TD><CODE><B>ByteStreams.</B><B><A HREF="../../../../../com/google/common/io/ByteStreams.html#slice(com.google.common.io.InputSupplier, long, long)">slice</A></B>(<A HREF="../../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A>&gt;&nbsp;supplier,
240 an underlying supplier, where each stream starts at the given
268 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Opens an input stream from the supplier, copies all bytes from the
297 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Opens a <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Readable.html?is-external=true" title="class or interface in java.lang"><CODE>Readable</CODE></A> object from the supplier, copies all characters
362 <TD><CODE><B>ByteStreams.</B><B><A HREF="../../../../../com/google/common/io/ByteStreams.html#getChecksum(com.google.common.io.InputSupplier, java.util.zip.Checksum)">getChecksum</A></B>(<A HREF="../../../../../com/google/common/io/InputSupplier.html" title="interface in com.google.common.io">InputSupplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html?is-external=true" title="class or interface in java.io">InputStream</A>&gt;&nbsp;supplier,
    [all...]
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_include/khronos/
OMX_Core.h 193 /** A non-supplier port sends this error to the IL client (via the EventHandler callback)
195 on a port restart) when it deems that it has waited an unusually long time for the supplier
199 /** A non-supplier port sends this error to the IL client (via the EventHandler callback)
201 on a port stop) when it deems that it has waited an unusually long time for the supplier
205 /** A supplier port sends this error to the IL client (via the EventHandler callback)
208 the non-supplier to return a buffer via an EmptyThisBuffer or FillThisBuffer call. */
596 /** The OMX_BUFFERSUPPLIERTYPE enumeration is used to dictate port supplier
612 /** buffer supplier parameter
619 OMX_BUFFERSUPPLIERTYPE eBufferSupplier; /**< buffer supplier */
638 OMX_BUFFERSUPPLIERTYPE eSupplier; /**< supplier preference *
    [all...]
  /frameworks/base/include/media/stagefright/openmax/
OMX_Core.h 210 /** A non-supplier port sends this error to the IL client (via the EventHandler callback)
212 on a port restart) when it deems that it has waited an unusually long time for the supplier
216 /** A non-supplier port sends this error to the IL client (via the EventHandler callback)
218 on a port stop) when it deems that it has waited an unusually long time for the supplier
222 /** A supplier port sends this error to the IL client (via the EventHandler callback)
225 the non-supplier to return a buffer via an EmptyThisBuffer or FillThisBuffer call. */
613 /** The OMX_BUFFERSUPPLIERTYPE enumeration is used to dictate port supplier
629 /** buffer supplier parameter
636 OMX_BUFFERSUPPLIERTYPE eBufferSupplier; /**< buffer supplier */
655 OMX_BUFFERSUPPLIERTYPE eSupplier; /**< supplier preference *
    [all...]
  /hardware/qcom/media/mm-core/omxcore/inc/
OMX_Core.h 193 /** A non-supplier port sends this error to the IL client (via the EventHandler callback)
195 on a port restart) when it deems that it has waited an unusually long time for the supplier
199 /** A non-supplier port sends this error to the IL client (via the EventHandler callback)
201 on a port stop) when it deems that it has waited an unusually long time for the supplier
205 /** A supplier port sends this error to the IL client (via the EventHandler callback)
208 the non-supplier to return a buffer via an EmptyThisBuffer or FillThisBuffer call. */
596 /** The OMX_BUFFERSUPPLIERTYPE enumeration is used to dictate port supplier
612 /** buffer supplier parameter
619 OMX_BUFFERSUPPLIERTYPE eBufferSupplier; /**< buffer supplier */
638 OMX_BUFFERSUPPLIERTYPE eSupplier; /**< supplier preference *
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Core.h 193 /** A non-supplier port sends this error to the IL client (via the EventHandler callback)
195 on a port restart) when it deems that it has waited an unusually long time for the supplier
199 /** A non-supplier port sends this error to the IL client (via the EventHandler callback)
201 on a port stop) when it deems that it has waited an unusually long time for the supplier
205 /** A supplier port sends this error to the IL client (via the EventHandler callback)
208 the non-supplier to return a buffer via an EmptyThisBuffer or FillThisBuffer call. */
596 /** The OMX_BUFFERSUPPLIERTYPE enumeration is used to dictate port supplier
612 /** buffer supplier parameter
619 OMX_BUFFERSUPPLIERTYPE eBufferSupplier; /**< buffer supplier */
638 OMX_BUFFERSUPPLIERTYPE eSupplier; /**< supplier preference */
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
Parser.java 22 * <p>This was the main event supplier interface for SAX1; it has
  /external/guava/javadoc/com/google/common/collect/class-use/
ListMultimap.html 159 <TD><CODE><B>Multimaps.</B><B><A HREF="../../../../../com/google/common/collect/Multimaps.html#newListMultimap(java.util.Map, com.google.common.base.Supplier)">newListMultimap</A></B>(<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>&lt;K,<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;V&gt;&gt;&nbsp;map,
160 <A HREF="../../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;V&gt;&gt;&nbsp;factory)</CODE>
SortedSetMultimap.html 141 <TD><CODE><B>Multimaps.</B><B><A HREF="../../../../../com/google/common/collect/Multimaps.html#newSortedSetMultimap(java.util.Map, com.google.common.base.Supplier)">newSortedSetMultimap</A></B>(<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>&lt;K,<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;V&gt;&gt;&nbsp;map,
142 <A HREF="../../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util">SortedSet</A>&lt;V&gt;&gt;&nbsp;factory)</CODE>
SetMultimap.html 200 <TD><CODE><B>Multimaps.</B><B><A HREF="../../../../../com/google/common/collect/Multimaps.html#newSetMultimap(java.util.Map, com.google.common.base.Supplier)">newSetMultimap</A></B>(<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>&lt;K,<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;V&gt;&gt;&nbsp;map,
201 <A HREF="../../../../../com/google/common/base/Supplier.html" title="interface in com.google.common.base">Supplier</A>&lt;? extends <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Set.html?is-external=true" title="class or interface in java.util">Set</A>&lt;V&gt;&gt;&nbsp;factory)</CODE>

Completed in 551 milliseconds

1 2 3