Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for camelize (0.03 seconds)

  1. src/main/java/org/codelibs/core/lang/StringUtil.java

         * <p>
         * Usage example:
         * </p>
         *
         * <pre>
         * StringUtil.camelize("USER_ID")  = "UserId"
         * </pre>
         *
         * @param s
         *            the text
         * @return the resulting string
         */
        public static String camelize(String s) {
            if (s == null) {
                return null;
            }
            s = s.toLowerCase();
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Feb 12 12:10:45 GMT 2026
    - 21.5K bytes
    - Click Count (0)
Back to Top