Here you can find the source of capitalizeFirstLetter(final String variableName)
Parameter | Description |
---|---|
variableName | the variable name as a string |
private static String capitalizeFirstLetter(final String variableName)
//package com.java2s; //License from project: Apache License public class Main { /**//from w w w . j a va 2 s . c o m * Returns the String passed in with the first letter capitalised. * * @param variableName the variable name as a string * @return a String with the first letter in uppercase */ private static String capitalizeFirstLetter(final String variableName) { return variableName.substring(0, 1).toUpperCase() + variableName.substring(1); } }