Method toUpperCase()
Return type:
java.lang.String
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
if (s.toUpperCase().equals("NOW")
2
return str != null && str.toUpperCase().startsWith(prefix.toUpperCase());
3
return internalGetOmitElementCloseSet().contains( qualifiedName.toUpperCase() );
4
headers.put(name.toUpperCase(), value);
5
headers.put(name.toUpperCase(), value);
6
reqHdr.put(key.toUpperCase(), value);
7
printHexString(Long.toHexString(l).toUpperCase(), byteNumber * 2);
8
error = msg.substring(0,1).toUpperCase() + msg.substring(1);
9
syntaxMap.put(word.toUpperCase(), style);
10
_ext[0] = extension.toUpperCase();
11
return !url.getProtocol().toUpperCase().equals("HTTP") &&
12
+ "where TABLE_TYPE LIKE '" + type.toUpperCase() + "%' " + "order by TABLE_NAME";
13
if (wflag != null) return wflag.toUpperCase().equals("YES"); //NOI18N
14
return o.getClass().getMethod("get" + m.getName().toUpperCase(),
15
return name.toUpperCase().startsWith(lang.toUpperCase());
16
if( !PropertyManager.symCaseSensitive ) name = name.toUpperCase();
17
return lang.getString(key).toUpperCase().charAt(lang.getString(key).indexOf("&")+1);
18
this.clazz = "cs_" + name.replace('-', '_').toUpperCase();
19
if( get(node.getNodeName().toUpperCase()) != null )
20
return (preformattedTags != null) && (preformattedTags.contains(qualifiedName.toUpperCase()));
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.