Method compareToIgnoreCase(String str)
Return type: int
Member of:
java.lang.String
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return user.getName().compareToIgnoreCase(principal) == 0;
2
return(osName.compareToIgnoreCase("windows") > 0);
3
if (databaseType.compareToIgnoreCase("mysql") == 0) {
4
if( (arg.compareToIgnoreCase("-importCernatoXML") == 0) && (i < args.length - 1) ){
5
if(arrayType.compareToIgnoreCase("jobjectArray")==0)
6
if (promptVal.compareToIgnoreCase("false") == 0 ||
7
boolean e = ((String)_driverCombo.getSelectedItem()).compareToIgnoreCase( JMFDriver.NAME ) != 0;
8
if ( prm.getProperty( this.DEBUG_KEY ).compareToIgnoreCase("true") == 0 ) {
9
if (subFiles[i].isDirectory() && "CVS".compareToIgnoreCase(subFiles[i].getName()) != 0) {
10
if (contact.getId().compareToIgnoreCase(id) == 0)
11
if (currentValue.compareToIgnoreCase(requestedName) == 0) {
12
if(lCol.getColumnName().compareToIgnoreCase(getKeyColumn()) != 0)
13
(token.compareToIgnoreCase(beginTag)==0)) level++;
14
int compared = httpURLPath.compareToIgnoreCase(href);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.