Searched refs:anotherString (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DXMLString.java148 * @param anotherString the object to compare this <code>String</code>
155 public abstract boolean equals(String anotherString); argument
178 * @param anotherString the <code>String</code> to compare this
187 public abstract boolean equalsIgnoreCase(String anotherString); argument
192 * @param anotherString the <code>String</code> to be compared.
198 * @exception java.lang.NullPointerException if <code>anotherString</code>
201 public abstract int compareTo(XMLString anotherString); argument
H A DXMLStringDefault.java214 * @param anotherString the <code>String</code> to compare this
223 public boolean equalsIgnoreCase(String anotherString) argument
225 return m_str.equalsIgnoreCase(anotherString);
231 * @param anotherString the <code>String</code> to be compared.
237 * @exception java.lang.NullPointerException if <code>anotherString</code>
240 public int compareTo(XMLString anotherString) argument
242 return m_str.compareTo(anotherString.toString());
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXStringForFSB.java372 * @param anotherString Object to compare this to
378 public boolean equals(String anotherString) argument
383 if (n == anotherString.length())
391 if (fsb.charAt(i) != anotherString.charAt(j))
446 * @param anotherString the <code>String</code> to compare this
455 public boolean equalsIgnoreCase(String anotherString) argument
457 return (m_length == anotherString.length())
458 ? str().equalsIgnoreCase(anotherString) : false;
471 * @exception java.lang.NullPointerException if <code>anotherString</code>
H A DXString.java401 * @param anotherString the <code>String</code> to compare this
410 public boolean equalsIgnoreCase(String anotherString) argument
412 return str().equalsIgnoreCase(anotherString);
425 * @exception java.lang.NullPointerException if <code>anotherString</code>
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java979 String anotherString = (String) anObject;
981 if (n == anotherString.value.length) {
983 char v2[] = anotherString.value;
1080 * @param anotherString
1089 public boolean equalsIgnoreCase(String anotherString) { argument
1090 return (this == anotherString) ? true
1091 : (anotherString != null)
1092 && (anotherString.value.length == value.length)
1093 && regionMatches(true, 0, anotherString, 0, value.length);
1120 * this.charAt(k)-anotherString
1137 compareTo(String anotherString) argument
[all...]

Completed in 40 milliseconds