Here you can find the source of toTitleCase(final int chr)
Parameter | Description |
---|---|
chr | the char |
public static final int toTitleCase(final int chr)
//package com.java2s; //License from project: MIT License public class Main { /**/* w ww . jav a 2 s. co m*/ * Convert a character to title case * * @param chr * the char * @return the title case */ public static final int toTitleCase(final int chr) { return Character.toTitleCase(chr); } /** * Convert a character to title case * * @param chr * the char * @return the title case */ public static final char toTitleCase(final char chr) { return Character.toTitleCase(chr); } }