Java com.google.common.base Ascii fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.base Ascii fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.base Ascii.

The text is from its open source code.

Field

byteLF
Line Feed ('\n'): A format effector which controls the movement of the printing position to the next printing line.
byteESC
Escape: A control character intended to provide code extension (supplementary characters) in general information interchange.
charMAX
The maximum value of an ASCII character.

Method

booleanequalsIgnoreCase(CharSequence s1, CharSequence s2)
Indicates whether the contents of the given character sequences s1 and s2 are equal, ignoring the case of any ASCII alphabetic characters between 'a' and 'z' or 'A' and 'Z' inclusive.
booleanisLowerCase(char c)
Indicates whether c is one of the twenty-six lowercase ASCII alphabetic characters between 'a' and 'z' inclusive.
booleanisUpperCase(char c)
Indicates whether c is one of the twenty-six uppercase ASCII alphabetic characters between 'A' and 'Z' inclusive.
StringtoLowerCase(String string)
Returns a copy of the input string in which all #isUpperCase(char) uppercase ASCII characters have been converted to lowercase.
StringtoLowerCase(CharSequence chars)
Returns a copy of the input character sequence in which all #isUpperCase(char) uppercase ASCII characters have been converted to lowercase.
chartoLowerCase(char c)
If the argument is an #isUpperCase(char) uppercase ASCII character returns the lowercase equivalent.
StringtoUpperCase(String string)
Returns a copy of the input string in which all #isLowerCase(char) lowercase ASCII characters have been converted to uppercase.
StringtoUpperCase(CharSequence chars)
Returns a copy of the input character sequence in which all #isLowerCase(char) lowercase ASCII characters have been converted to uppercase.
chartoUpperCase(char c)
If the argument is a #isLowerCase(char) lowercase ASCII character returns the uppercase equivalent.
Stringtruncate(CharSequence seq, int maxLength, String truncationIndicator)
Truncates the given character sequence to the given maximum length.