Back to project page sqlite-analyzer.
The source code is released under:
Apache License
If you think the Android project sqlite-analyzer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.novoda.sqlite; //from ww w. j ava 2 s.c om public final class StringUtilOld { private StringUtilOld() { } public static String camelize(String text) { String caseBase = text; while (caseBase.startsWith("_")) { caseBase = caseBase.substring(1); } return caseBase.substring(0, 1).toUpperCase() + caseBase.substring(1).toLowerCase(); } }