mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-09 03:18:24 +07:00
47d248a44b
list-style attribute used in standard javadoc's stylesheet seems to be unsupported by JDK's HTML kit (following IDEA-107790) - fix tests
37 lines
1.7 KiB
HTML
37 lines
1.7 KiB
HTML
<HTML><style type="text/css"> ul.inheritance {
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
ul.inheritance li {
|
|
display:inline;
|
|
list-style-type:none;
|
|
}
|
|
ul.inheritance li ul.inheritance {
|
|
margin-left:15px;
|
|
padding-left:15px;
|
|
padding-top:1px;
|
|
}
|
|
</style><a name="toLowerCase()">
|
|
<!-- -->
|
|
</a>
|
|
<h4>toLowerCase</h4>
|
|
<pre>public <a href="../../java/lang/String.html" title="class in java.lang">String</a> toLowerCase()</pre>
|
|
<div class="block">Converts all of the characters in this <code>String</code> to lower
|
|
case using the rules of the default locale. This is equivalent to calling
|
|
<code>toLowerCase(Locale.getDefault())</code>.
|
|
<p>
|
|
<b>Note:</b> This method is locale sensitive, and may produce unexpected
|
|
results if used for strings that are intended to be interpreted locale
|
|
independently.
|
|
Examples are programming language identifiers, protocol keys, and HTML
|
|
tags.
|
|
For instance, <code>"TITLE".toLowerCase()</code> in a Turkish locale
|
|
returns <code>"t\u0131tle"</code>, where '\u0131' is the
|
|
LATIN SMALL LETTER DOTLESS I character.
|
|
To obtain correct results for locale insensitive strings, use
|
|
<code>toLowerCase(Locale.ENGLISH)</code>.
|
|
<p></div>
|
|
<dl><dt><span class="strong">Returns:</span></dt><dd>the <code>String</code>, converted to lowercase.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../java/lang/String.html#toLowerCase(java.util.Locale)"><code>toLowerCase(Locale)</code></a></dd></dl>
|
|
</li>
|
|
</ul>
|
|
</HTML> |