Skip to content

Commit

Permalink
Generate Javadoc and JDiff for Guava HEAD-jre-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
copybara-service[bot] committed Jun 15, 2023
1 parent 0372446 commit 8faf566
Show file tree
Hide file tree
Showing 32 changed files with 66 additions and 70 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.annotations</h1
<section><a id="package.description">
<!-- -->
</a>
<div class="block">Common annotation types. This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a> library.</div>
<div class="block">Common annotation types. This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a> library.</div>
</section>
<ul class="blockList">
<li class="blockList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.base</h1>
</a>
<div class="block">Basic utility libraries and interfaces.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.

<h2>Contents</h2>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.cache</h1>
</a>
<div class="block">This package contains caching utilities.

<p>The core interface used to represent caches is <a href="Cache.html" title="interface in com.google.common.cache"><code>Cache</code></a>.
In-memory caches can be configured and created using <a href="CacheBuilder.html" title="class in com.google.common.cache"><code>CacheBuilder</code></a>, with cache entries being loaded by <a href="CacheLoader.html" title="class in com.google.common.cache"><code>CacheLoader</code></a>. Statistics about cache performance are exposed using <a href="CacheStats.html" title="class in com.google.common.cache"><code>CacheStats</code></a>.
<p>The core interface used to represent caches is <a href="Cache.html" title="interface in com.google.common.cache"><code>Cache</code></a>. In-memory caches can be
configured and created using <a href="CacheBuilder.html" title="class in com.google.common.cache"><code>CacheBuilder</code></a>, with cache entries being loaded by <a href="CacheLoader.html" title="class in com.google.common.cache"><code>CacheLoader</code></a>. Statistics about cache performance are exposed using <a href="CacheStats.html" title="class in com.google.common.cache"><code>CacheStats</code></a>.

<p>See the Guava User Guide article on <a href="https://github.com/google/guava/wiki/CachesExplained">caches</a>.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.</div>
<dl>
<dt><span class="simpleTagLabel">Author:</span></dt>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,39 +104,38 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.collect</h1>
<!-- -->
</a>
<div class="block">This package contains generic collection interfaces and implementations, and other utilities for
working with collections. It is a part of the open-source <a href="http://github.com/google/guava">Guava</a> library.
working with collections. It is a part of the open-source <a href="https://github.com/google/guava">Guava</a> library.

<h2>Collection Types</h2>

<dl>
<dt><a href="BiMap.html" title="interface in com.google.common.collect"><code>BiMap</code></a>
<dd>An extension of <code>Map</code> that guarantees the uniqueness of its values as well
as that of its keys. This is sometimes called an "invertible map," since the restriction on
values enables it to support an <a href="BiMap.html#inverse()">inverse
view</a> -- which is another instance of <code>BiMap</code>.
values enables it to support an <a href="BiMap.html#inverse()">inverse view</a> -- which is another
instance of <code>BiMap</code>.
<dt><a href="Multiset.html" title="interface in com.google.common.collect"><code>Multiset</code></a>
<dd>An extension of <code>Collection</code> that may contain duplicate values like a
<code>List</code>, yet has order-independent equality like a <code>Set</code>.
One typical use for a multiset is to represent a histogram.
<dt><a href="Multimap.html" title="interface in com.google.common.collect"><code>Multimap</code></a>
<dd>A new type, which is similar to <code>Map</code>, but may contain multiple entries
with the same key. Some behaviors of <a href="Multimap.html" title="interface in com.google.common.collect"><code>Multimap</code></a> are left
unspecified and are provided only by the subtypes mentioned below.
with the same key. Some behaviors of <a href="Multimap.html" title="interface in com.google.common.collect"><code>Multimap</code></a> are left unspecified and are provided
only by the subtypes mentioned below.
<dt><a href="ListMultimap.html" title="interface in com.google.common.collect"><code>ListMultimap</code></a>
<dd>An extension of <a href="Multimap.html" title="interface in com.google.common.collect"><code>Multimap</code></a> which permits duplicate entries,
supports random access of values for a particular key, and has <i>partially order-dependent
equality</i> as defined by <a href="ListMultimap.html#equals(java.lang.Object)"><code>ListMultimap.equals(Object)</code></a>.
<code>ListMultimap</code> takes its name from the fact that the <a href="ListMultimap.html#get(K)">collection of values</a> associated with a given
key fulfills the <code>List</code> contract.
<dd>An extension of <a href="Multimap.html" title="interface in com.google.common.collect"><code>Multimap</code></a> which permits duplicate entries, supports random access of
values for a particular key, and has <i>partially order-dependent equality</i> as defined
by <a href="ListMultimap.html#equals(java.lang.Object)"><code>ListMultimap.equals(Object)</code></a>. <code>ListMultimap</code> takes its name from the fact
that the <a href="ListMultimap.html#get(K)">collection of values</a> associated with a given key
fulfills the <code>List</code> contract.
<dt><a href="SetMultimap.html" title="interface in com.google.common.collect"><code>SetMultimap</code></a>
<dd>An extension of <a href="Multimap.html" title="interface in com.google.common.collect"><code>Multimap</code></a> which has order-independent
equality and does not allow duplicate entries; that is, while a key may appear twice in a
<code>SetMultimap</code>, each must map to a different value. <code>SetMultimap</code> takes its name
from the fact that the <a href="SetMultimap.html#get(K)">collection of
values</a> associated with a given key fulfills the <code>Set</code> contract.
<dd>An extension of <a href="Multimap.html" title="interface in com.google.common.collect"><code>Multimap</code></a> which has order-independent equality and does not allow
duplicate entries; that is, while a key may appear twice in a <code>SetMultimap</code>, each
must map to a different value. <code>SetMultimap</code> takes its name from the fact that the
<a href="SetMultimap.html#get(K)">collection of values</a> associated with a given key fulfills the
<code>Set</code> contract.
<dt><a href="SortedSetMultimap.html" title="interface in com.google.common.collect"><code>SortedSetMultimap</code></a>
<dd>An extension of <a href="SetMultimap.html" title="interface in com.google.common.collect"><code>SetMultimap</code></a> for which the <a href="SortedSetMultimap.html#get(K)">collection values</a> associated with a given
key is a <code>SortedSet</code>.
<dd>An extension of <a href="SetMultimap.html" title="interface in com.google.common.collect"><code>SetMultimap</code></a> for which the <a href="SortedSetMultimap.html#get(K)">collection values</a> associated with a given key is a <code>SortedSet</code>.
<dt><a href="Table.html" title="interface in com.google.common.collect"><code>Table</code></a>
<dd>A new type, which is similar to <code>Map</code>, but which indexes its values by an
ordered pair of keys, a row key and column key.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.escape</h1>

<p>Additional escapers implementations are found in the applicable packages: <a href="../html/HtmlEscapers.html" title="class in com.google.common.html"><code>HtmlEscapers</code></a> in <code>com.google.common.html</code>, <a href="../xml/XmlEscapers.html" title="class in com.google.common.xml"><code>XmlEscapers</code></a> in <code>com.google.common.xml</code>, and <a href="../net/UrlEscapers.html" title="class in com.google.common.net"><code>UrlEscapers</code></a> in <code>com.google.common.net</code>.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.</div>
</section>
<ul class="blockList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.html</h1>
for
HTML.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.</div>
</section>
<ul class="blockList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.io</h1>
<div class="block">This package contains utility methods and classes for working with Java I/O; for example input
streams, output streams, readers, writers, and files.

<p>At the core of this package are the Source/Sink types: <a href="ByteSource.html" title="class in com.google.common.io"><code>ByteSource</code></a>, <a href="CharSource.html" title="class in com.google.common.io"><code>CharSource</code></a>, <a href="ByteSink.html" title="class in com.google.common.io"><code>ByteSink</code></a> and <a href="CharSink.html" title="class in com.google.common.io"><code>CharSink</code></a>. They
are factories for I/O streams that provide many convenience methods that handle both opening and
<p>At the core of this package are the Source/Sink types: <a href="ByteSource.html" title="class in com.google.common.io"><code>ByteSource</code></a>, <a href="CharSource.html" title="class in com.google.common.io"><code>CharSource</code></a>, <a href="ByteSink.html" title="class in com.google.common.io"><code>ByteSink</code></a> and <a href="CharSink.html" title="class in com.google.common.io"><code>CharSink</code></a>. They are
factories for I/O streams that provide many convenience methods that handle both opening and
closing streams for you.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library. For more information on Sources and Sinks as well as other features of this package, see
<a href="https://github.com/google/guava/wiki/IOExplained">I/O Explained</a> on the Guava wiki.</div>
<dl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.math</h1>
</a>
<div class="block">Arithmetic functions operating on primitive values and <code>BigInteger</code> instances.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.

<p>See the Guava User Guide article on <a href="https://github.com/google/guava/wiki/MathExplained">math utilities</a>.</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.net</h1>
<div class="block">This package contains utility methods and classes for working with net addresses (numeric IP and
domain names).

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.</div>
<dl>
<dt><span class="simpleTagLabel">Author:</span></dt>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.primitives</h1>
<div class="block">Static utilities for working with the eight primitive types and <code>void</code>, and value types for
treating them as unsigned.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.

<p>See the Guava User Guide article on <a href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.reflect</h1>
<section><a id="package.description">
<!-- -->
</a>
<div class="block">This package contains utilities to work with Java reflection. It is a part of the open-source <a href="http://github.com/google/guava">Guava</a> library.</div>
<div class="block">This package contains utilities to work with Java reflection. It is a part of the open-source <a href="https://github.com/google/guava">Guava</a> library.</div>
</section>
<ul class="blockList">
<li class="blockList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,11 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.util.concurrent
</a>
<div class="block">Concurrency utilities.

<p>Commonly used types include <a href="ListenableFuture.html" title="interface in com.google.common.util.concurrent"><code>ListenableFuture</code></a> and
<a href="Service.html" title="interface in com.google.common.util.concurrent"><code>Service</code></a>.
<p>Commonly used types include <a href="ListenableFuture.html" title="interface in com.google.common.util.concurrent"><code>ListenableFuture</code></a> and <a href="Service.html" title="interface in com.google.common.util.concurrent"><code>Service</code></a>.

<p>Commonly used utilities include <a href="Futures.html" title="class in com.google.common.util.concurrent"><code>Futures</code></a>, <a href="MoreExecutors.html" title="class in com.google.common.util.concurrent"><code>MoreExecutors</code></a>, and <a href="ThreadFactoryBuilder.html" title="class in com.google.common.util.concurrent"><code>ThreadFactoryBuilder</code></a>.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.</div>
</section>
<ul class="blockList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.xml</h1>
for
XML.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.</div>
</section>
<ul class="blockList">
Expand Down
Binary file modified releases/snapshot-android/api/docs/member-search-index.zip
Binary file not shown.
Binary file modified releases/snapshot-android/api/docs/package-search-index.zip
Binary file not shown.
Binary file modified releases/snapshot-android/api/docs/type-search-index.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.annotations</h1
<section><a id="package.description">
<!-- -->
</a>
<div class="block">Common annotation types. This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a> library.</div>
<div class="block">Common annotation types. This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a> library.</div>
</section>
<ul class="blockList">
<li class="blockList">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.base</h1>
</a>
<div class="block">Basic utility libraries and interfaces.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.

<h2>Contents</h2>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ <h1 title="Package" class="title">Package&nbsp;com.google.common.cache</h1>
</a>
<div class="block">This package contains caching utilities.

<p>The core interface used to represent caches is <a href="Cache.html" title="interface in com.google.common.cache"><code>Cache</code></a>.
In-memory caches can be configured and created using <a href="CacheBuilder.html" title="class in com.google.common.cache"><code>CacheBuilder</code></a>, with cache entries being loaded by <a href="CacheLoader.html" title="class in com.google.common.cache"><code>CacheLoader</code></a>. Statistics about cache performance are exposed using <a href="CacheStats.html" title="class in com.google.common.cache"><code>CacheStats</code></a>.
<p>The core interface used to represent caches is <a href="Cache.html" title="interface in com.google.common.cache"><code>Cache</code></a>. In-memory caches can be
configured and created using <a href="CacheBuilder.html" title="class in com.google.common.cache"><code>CacheBuilder</code></a>, with cache entries being loaded by <a href="CacheLoader.html" title="class in com.google.common.cache"><code>CacheLoader</code></a>. Statistics about cache performance are exposed using <a href="CacheStats.html" title="class in com.google.common.cache"><code>CacheStats</code></a>.

<p>See the Guava User Guide article on <a href="https://github.com/google/guava/wiki/CachesExplained">caches</a>.

<p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
<p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
library.</div>
<dl>
<dt><span class="simpleTagLabel">Author:</span></dt>
Expand Down
Loading

0 comments on commit 8faf566

Please sign in to comment.