mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 10:37:59 +07:00
44 lines
1.6 KiB
HTML
44 lines
1.6 KiB
HTML
<HTML><style type="text/css"> ul.inheritance {
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
ul.inheritance li {
|
|
display:inline;
|
|
list-style:none;
|
|
}
|
|
ul.inheritance li ul.inheritance {
|
|
margin-left:15px;
|
|
padding-left:15px;
|
|
padding-top:1px;
|
|
}
|
|
</style><A NAME="toLowerCase()"><!-- --></A><H3>
|
|
toLowerCase</H3>
|
|
<PRE>
|
|
public <A HREF="../../java/lang/String.html" title="class in java.lang">String</A> <B>toLowerCase</B>()</PRE>
|
|
<DL>
|
|
<DD>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?tle"</code>, where '?' is the LATIN SMALL
|
|
LETTER DOTLESS I character.
|
|
To obtain correct results for locale insensitive strings, use
|
|
<code>toLowerCase(Locale.ENGLISH)</code>.
|
|
<p>
|
|
<P>
|
|
<DD><DL>
|
|
</DL>
|
|
</DD>
|
|
<DD><DL>
|
|
|
|
<DT><B>Returns:</B><DD>the <code>String</code>, converted to lowercase.<DT><B>See Also:</B><DD><A HREF="../../java/lang/String.html#toLowerCase(java.util.Locale)"><CODE>toLowerCase(Locale)</CODE></A></DL>
|
|
</DD>
|
|
</DL>
|
|
|
|
</HTML> |