Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/SeanDragon/protools
/ toUpper
Method
toUpper
common/src/main/java/pro/tools/data/text/ToolStr.java:237–243 ·
view source on GitHub ↗
变全大写 @param s @return
(String s)
Source
from the content-addressed store, hash-verified
235
* @
return
236
*/
237
public
static
String toUpper(String s) {
238
if
(isBlank(s)) {
239
return
""
;
240
}
241
242
return
s.toUpperCase();
243
}
244
245
/**
246
* 变全小写
Callers
nothing calls this directly
Calls
1
isBlank
Method · 0.95
Tested by
no test coverage detected