Java String Lower Case toLowerCaseIdent(String ident)

Here you can find the source of toLowerCaseIdent(String ident)

Description

to Lower Case Ident

License

Open Source License

Declaration

public static String toLowerCaseIdent(String ident) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String toLowerCaseIdent(String ident) {
        return Character.toLowerCase(ident.charAt(0)) + ident.substring(1);
    }//from  w  ww .j a v  a  2  s .c o  m
}

Related

  1. toLowerCaseFirst(String text)
  2. toLowerCaseFirstLetter(String str)
  3. toLowercaseFirstLetter(String str)
  4. toLowercaseFirstLetter(String value)
  5. toLowerCaseFirstOne(String s)
  6. toLowerCaseIgnoreNull(String tobeDone)
  7. toLowerCaseInitial(String srcString, boolean flag)
  8. toLowerCaseSafe(String str)
  9. toLowercaseSlug(String string)