1 <p>This code compares a <code>java.lang.String</code> parameter for reference
2 equality using the == or != operators. Requiring callers to
3 pass only String constants or interned strings to a method is unnecessarily
4 fragile, and rarely leads to measurable performance gains. Consider
5 using the <code>equals(Object)</code> method instead.</p>