Java org.apache.commons.lang CharUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang CharUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang CharUtils.

The text is from its open source code.

Subclass

org.apache.commons.lang.CharUtils has subclasses.
Click this link to see all its subclasses.

Field

charLF
linefeed LF ('\n').
charCR
carriage return CR ('\r').

Method

booleanisAscii(char ch)

Checks whether the character is ASCII 7 bit.

booleanisAsciiAlpha(char ch)

Checks whether the character is ASCII 7 bit alphabetic.

booleanisAsciiAlphaLower(char ch)

Checks whether the character is ASCII 7 bit alphabetic lower case.

booleanisAsciiAlphanumeric(char ch)

Checks whether the character is ASCII 7 bit numeric.

booleanisAsciiAlphaUpper(char ch)

Checks whether the character is ASCII 7 bit alphabetic upper case.

booleanisAsciiNumeric(char ch)

Checks whether the character is ASCII 7 bit numeric.

booleanisAsciiPrintable(char ch)

Checks whether the character is ASCII 7 bit printable.

chartoChar(Character ch)

Converts the Character to a char throwing an exception for null.

chartoChar(String str)

Converts the String to a char using the first character, throwing an exception on empty Strings.

inttoIntValue(char ch)

Converts the character to the Integer it represents, throwing an exception if the character is not numeric.

inttoIntValue(Character ch)

Converts the character to the Integer it represents, throwing an exception if the character is not numeric.

StringtoString(char ch)

Converts the character to a String that contains the one character.

StringtoString(Character ch)

Converts the character to a String that contains the one character.

StringunicodeEscaped(char ch)

Converts the string to the unicode format '\u0020'.

StringunicodeEscaped(Character ch)

Converts the string to the unicode format '\u0020'.