MCPcopy Index your code
hub / github.com/BombusMod/BombusMod / toLowerCase

Method toLowerCase

src/main/java/util/Strconv.java:176–187  ·  view source on GitHub ↗
(String src)

Source from the content-addressed store, hash-verified

174 }
175
176 public static String toLowerCase(String src){
177 StringBuffer dst=new StringBuffer(src);
178 int len=dst.length();
179 for (int i=0; i<len; i++) {
180 char c=dst.charAt(i);
181 if (c>'A'-1 && c<'Z'+1) c+='a'-'A'; // default latin chars
182 // if (c>0x40f && c<0x430) c+=0x430-0x410; // cyrillic chars
183 // TODO: other schemes by request
184 dst.setCharAt(i, c);
185 }
186 return dst.toString();
187 }
188 public static String[] split(String original, char separator) {
189 Vector nodes = new Vector();
190// Parse nodes into vector

Callers 15

isCharMethod · 0.80
J2SESystemFontMethod · 0.80
filterInputModeMethod · 0.80
getFontMethod · 0.80
parseBooleanMethod · 0.80
FileItemMethod · 0.80
JidMethod · 0.80
cmdOkMethod · 0.80
getClientIDByCapsMethod · 0.80
setSortKeyMethod · 0.80
ConfigFormMethod · 0.80
langFileNameMethod · 0.80

Calls 1

toStringMethod · 0.45

Tested by

no test coverage detected