Java String Upper Case toUpperCaseIdent(String ident)

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

Description

to Upper Case Ident

License

Open Source License

Declaration

public static String toUpperCaseIdent(String ident) 

Method Source Code

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

public class Main {
    public static String toUpperCaseIdent(String ident) {
        return Character.toUpperCase(ident.charAt(0)) + ident.substring(1);
    }// w ww. j  ava 2  s .co m
}

Related

  1. toUpperCaseFirstLetter(StringBuilder sb)
  2. toUpperCaseFirstOne(String origin)
  3. toUpperCaseFirstOne(String s)
  4. toUpperCaseHead(String str)
  5. toUppercaseHeadCharactor(String str)
  6. toUpperCaseName(String s)
  7. toUpperCaseNamespace(String string)
  8. toUppercaseNoAccents(String txt)
  9. toUpperCaseNotation(String camelNotation)