Skip to content

Commit d5fd68e

Browse files
committed
Javadoc regenerated
1 parent b81d8c4 commit d5fd68e

25 files changed

+276
-250
lines changed

apidocs/allclasses-index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ <h1 title="All Classes and Interfaces" class="title">All Classes and Interfaces<
130130
</div>
131131
<div class="col-first even-row-color all-classes-table all-classes-table-tab2"><a href="com/google/guava/labs/base/CaseFormats.html" title="class in com.google.guava.labs.base">CaseFormats</a></div>
132132
<div class="col-last even-row-color all-classes-table all-classes-table-tab2">
133-
<div class="block">Additional utilities pertaining to <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/base/CaseFormat.html" title="class or interface in com.google.common.base" class="external-link"><code>CaseFormat</code></a>.</div>
133+
<div class="block">Additional utilities pertaining to <code>CaseFormat</code>.</div>
134134
</div>
135135
<div class="col-first odd-row-color all-classes-table all-classes-table-tab2"><a href="com/google/mu/collect/Chain.html" title="class in com.google.mu.collect">Chain&lt;T&gt;</a></div>
136136
<div class="col-last odd-row-color all-classes-table all-classes-table-tab2">

apidocs/com/google/common/labs/csv/Csv.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ <h3>parseToMaps</h3>
333333
field names in the header row. The first non-empty row is expected to be the header row.
334334

335335
<p>Upon duplicate header names, the latter wins. If you need alternative strategies,
336-
such as to reject duplicate header names, or to use <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/collect/ListMultimap.html" title="class or interface in com.google.common.collect" class="external-link"><code>ListMultimap</code></a>
336+
such as to reject duplicate header names, or to use <code>ListMultimap</code>
337337
to keep track of all duplicate header values, consider using <a href="#parseWithHeaderFields(java.lang.String,com.google.mu.util.stream.BiCollector)"><code>parseWithHeaderFields(String, BiCollector)</code></a> instead. That is:
338338

339339
<pre><code>
@@ -375,7 +375,7 @@ <h3>parseWithHeaderFields</h3>
375375
input</code> string into a lazy stream of <code>Map</code>, keyed by the header field names.
376376

377377
<p>Usually, if you need a <code>Map</code> of field names to column values, consider using <a href="#parseToMaps(java.lang.String)"><code>parseToMaps(String)</code></a> instead. But if you need alternative strategies, such as collecting
378-
each row to a <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/collect/ListMultimap.html" title="class or interface in com.google.common.collect" class="external-link"><code>ListMultimap</code></a> to more gracefully handle
378+
each row to a <code>ListMultimap</code> to more gracefully handle
379379
duplicate header names, you can use:
380380

381381
<pre><code>

apidocs/com/google/guava/labs/base/CaseFormats.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ <h1 title="Class CaseFormats" class="title">Class CaseFormats</h1>
9090
<div class="type-signature"><span class="annotations">@CheckReturnValue
9191
</span><span class="modifiers">public final class </span><span class="element-name type-name-label">CaseFormats</span>
9292
<span class="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></span></div>
93-
<div class="block">Additional utilities pertaining to <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/base/CaseFormat.html" title="class or interface in com.google.common.base" class="external-link"><code>CaseFormat</code></a>.
93+
<div class="block">Additional utilities pertaining to <code>CaseFormat</code>.
9494

9595
<p><b>Warning:</b> This class doesn't recognize <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html#supplementary">supplementary
9696
code points</a>.</div>
@@ -127,10 +127,10 @@ <h2>Method Summary</h2>
127127
<div class="table-header col-second">Method</div>
128128
<div class="table-header col-last">Description</div>
129129
<div class="col-first even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code>static <a href="https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></code></div>
130-
<div class="col-second even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#toCase(com.google.common.base.CaseFormat,java.lang.String)" class="member-name-link">toCase</a><wbr>(<a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/base/CaseFormat.html" title="class or interface in com.google.common.base" class="external-link">CaseFormat</a>&nbsp;caseFormat,
130+
<div class="col-second even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4"><code><a href="#toCase(com.google.common.base.CaseFormat,java.lang.String)" class="member-name-link">toCase</a><wbr>(com.google.common.base.CaseFormat&nbsp;caseFormat,
131131
<a href="https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;input)</code></div>
132132
<div class="col-last even-row-color method-summary-table method-summary-table-tab1 method-summary-table-tab4">
133-
<div class="block">Converts <code>input</code> string to using the given <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/base/CaseFormat.html" title="class or interface in com.google.common.base" class="external-link"><code>CaseFormat</code></a>.</div>
133+
<div class="block">Converts <code>input</code> string to using the given <code>CaseFormat</code>.</div>
134134
</div>
135135
</div>
136136
</div>
@@ -169,9 +169,9 @@ <h2>Method Details</h2>
169169
<section class="detail" id="toCase(com.google.common.base.CaseFormat,java.lang.String)">
170170
<h3>toCase</h3>
171171
<div class="horizontal-scroll">
172-
<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name">toCase</span><wbr><span class="parameters">(<a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/base/CaseFormat.html" title="class or interface in com.google.common.base" class="external-link">CaseFormat</a>&nbsp;caseFormat,
172+
<div class="member-signature"><span class="modifiers">public static</span>&nbsp;<span class="return-type"><a href="https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a></span>&nbsp;<span class="element-name">toCase</span><wbr><span class="parameters">(com.google.common.base.CaseFormat&nbsp;caseFormat,
173173
<a href="https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" class="external-link">String</a>&nbsp;input)</span></div>
174-
<div class="block">Converts <code>input</code> string to using the given <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/base/CaseFormat.html" title="class or interface in com.google.common.base" class="external-link"><code>CaseFormat</code></a>. <code>input</code> can be in
174+
<div class="block">Converts <code>input</code> string to using the given <code>CaseFormat</code>. <code>input</code> can be in
175175
<code>snake_case</code>, <code>lowerCamelCase</code>, <code>UpperCamelCase</code>, <code>CONSTANT_CASE</code>,
176176
<code>dash-case</code> or any combination thereof. For example:
177177

@@ -182,7 +182,7 @@ <h3>toCase</h3>
182182
toCase(LOWER_UNDERSCORE, "primaryUser.userId") =&gt; "primary_user.user_id"
183183
</code></pre>
184184

185-
<p>Given that <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/base/CaseFormat.html" title="class or interface in com.google.common.base" class="external-link"><code>CaseFormat</code></a> only handles ascii, characters outside of the range of <code>
185+
<p>Given that <code>CaseFormat</code> only handles ascii, characters outside of the range of <code>
186186
[a-zA-Z0-9_-]</code> (e.g. whitespaces, parenthesis, non-ascii) are passed through as is. If you need
187187
to support non-ascii camel case such as Greek upper case ('Β') and lower case ('β'), consider
188188
using <a href="../../../mu/util/CaseBreaker.html#breakCase(java.lang.CharSequence)"><code>CaseBreaker.breakCase(java.lang.CharSequence)</code></a> to break up words in the source and then apply target casing

apidocs/com/google/guava/labs/base/package-summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ <h1 title="Package com.google.guava.labs.base" class="title">Package com.google.
8888
<div class="table-header col-last">Description</div>
8989
<div class="col-first even-row-color class-summary class-summary-tab2"><a href="CaseFormats.html" title="class in com.google.guava.labs.base">CaseFormats</a></div>
9090
<div class="col-last even-row-color class-summary class-summary-tab2">
91-
<div class="block">Additional utilities pertaining to <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/base/CaseFormat.html" title="class or interface in com.google.common.base" class="external-link"><code>CaseFormat</code></a>.</div>
91+
<div class="block">Additional utilities pertaining to <code>CaseFormat</code>.</div>
9292
</div>
9393
</div>
9494
</div>

apidocs/com/google/guava/labs/collect/BinarySearch.Table.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ <h2>Method Summary</h2>
148148
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab3">
149149
<div class="block">Finds the <a href="InsertionPoint.html" title="class in com.google.guava.labs.collect"><code>InsertionPoint</code></a> if <code>target</code> were to be added <em>in order</em>.</div>
150150
</div>
151-
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/collect/Range.html" title="class or interface in com.google.common.collect" class="external-link">Range</a><wbr>&lt;<a href="#type-param-C" title="type parameter in BinarySearch.Table">C</a>&gt;</code></div>
151+
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>com.google.common.collect.Range<wbr>&lt;<a href="#type-param-C" title="type parameter in BinarySearch.Table">C</a>&gt;</code></div>
152152
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#rangeOf(K)" class="member-name-link">rangeOf</a><wbr>(<a href="#type-param-K" title="type parameter in BinarySearch.Table">K</a>&nbsp;target)</code></div>
153153
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
154154
<div class="block">Finds the range of elements that match <code>target</code>.</div>
@@ -185,7 +185,7 @@ <h3 id="find(java.lang.Object)">find</h3>
185185
<section class="detail" id="rangeOf(K)">
186186
<h3 id="rangeOf(java.lang.Object)">rangeOf</h3>
187187
<div class="horizontal-scroll">
188-
<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type"><a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/collect/Range.html" title="class or interface in com.google.common.collect" class="external-link">Range</a>&lt;<a href="#type-param-C" title="type parameter in BinarySearch.Table">C</a>&gt;</span>&nbsp;<span class="element-name">rangeOf</span><wbr><span class="parameters">(<a href="#type-param-K" title="type parameter in BinarySearch.Table">K</a>&nbsp;target)</span></div>
188+
<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="return-type">com.google.common.collect.Range&lt;<a href="#type-param-C" title="type parameter in BinarySearch.Table">C</a>&gt;</span>&nbsp;<span class="element-name">rangeOf</span><wbr><span class="parameters">(<a href="#type-param-K" title="type parameter in BinarySearch.Table">K</a>&nbsp;target)</span></div>
189189
<div class="block">Finds the range of elements that match <code>target</code>.
190190

191191
<p>If the target is found at index <code>i</code>, the single-element range <b><code>[i..i]</code></b>
@@ -194,7 +194,7 @@ <h3 id="rangeOf(java.lang.Object)">rangeOf</h3>
194194
<p>If there are ties from index <code>i</code> to <code>j</code>, the closed range <b><code>[i..j]</code></b>
195195
is returned.
196196

197-
<p>If the target isn't found, an <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/collect/Range.html#isEmpty()" title="class or interface in com.google.common.collect" class="external-link"><code>empty</code></a> range is returned whose endpoint
197+
<p>If the target isn't found, an <code>empty</code> range is returned whose endpoint
198198
is the "insertion point" (where the target would have been inserted without breaking order).
199199
The direction of the open endpoint determines whether to insert before or after the point.
200200

@@ -212,9 +212,9 @@ <h3 id="rangeOf(java.lang.Object)">rangeOf</h3>
212212

213213
<ul>
214214
<li>For all insertion points except the last one after <code>MAX_VALUE</code>, the returned range
215-
is <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/collect/Range.html#closedOpen(C,C)" title="class or interface in com.google.common.collect" class="external-link"><code>closed-open</code></a> <b><code>[i..i)</code></b>, indicating that the insertion
215+
is <code>closed-open</code> <b><code>[i..i)</code></b>, indicating that the insertion
216216
point is immediately <em>before</em> endpoint <code>i</code>.
217-
<li>While if the insertion point is after <code>MAX_VALUE</code>, the returned range is <a href="https://javadoc.io/doc/com.google.guava/guava/latest/com/google/common/collect/Range.html#openClosed(C,C)" title="class or interface in com.google.common.collect" class="external-link"><code>open-closed</code></a> <b><code>(MAX_VALUE..MAX_VALUE]</code></b>, indicating that the
217+
<li>While if the insertion point is after <code>MAX_VALUE</code>, the returned range is <code>open-closed</code> <b><code>(MAX_VALUE..MAX_VALUE]</code></b>, indicating that the
218218
insertion point is immediately <em>after</em> endpoint <code>MAX_VALUE</code>.
219219
</ul>
220220

0 commit comments

Comments
 (0)