mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
19 lines
623 B
HTML
19 lines
623 B
HTML
<html>
|
|
<body>
|
|
Reports calls of:
|
|
<ul>
|
|
<li><code>equals()</code></li>
|
|
<li><code>equalsIgnoreCase()</code></li>
|
|
<li><code>compareTo()</code></li>
|
|
<li><code>compareToIgnoreCase()</code> and</li>
|
|
<li><code>trim()</code></li>
|
|
</ul>
|
|
<p>
|
|
on <code>String</code> objects.
|
|
Comparison of internationalized strings should probably use a <code>java.text.Collator</code> instead.
|
|
<code>String.trim()</code> only removes control characters between 0x00 and 0x20.
|
|
The <code>String.strip()</code> method introduced in Java 11 is more Unicode aware and can be used as a replacement.
|
|
</p>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |