java.lang.Object
java.lang.Character
- All Implemented Interfaces:
- Serializable, Comparable<Character>
- See Also:
- Top Examples, Source Code
public Character(char value)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[1688]Temprature
By Anonymous on 2005/12/20 12:50:24 Rate
in Fehrenhite
public static int charCount(int codePoint)
- See Also:
isSupplementaryCodePoint(int)
, isValidCodePoint
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public char charValue()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int codePointAt(char[] a,
int index)
- See Also:
- IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int codePointAt(char[] a,
int index,
int limit)
- See Also:
- IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int codePointAt(CharSequence seq,
int index)
- See Also:
seq.length()
, IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int codePointBefore(char[] a,
int index)
- See Also:
- IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int codePointBefore(char[] a,
int index,
int start)
- See Also:
- IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int codePointBefore(CharSequence seq,
int index)
- See Also:
seq.length()
, IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int codePointCount(char[] a,
int offset,
int count)
- See Also:
- IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int codePointCount(CharSequence seq,
int beginIndex,
int endIndex)
- See Also:
- IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte COMBINING_SPACING_MARK
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public int compareTo(Character anotherCharacter)
- See Also:
- Comparable, compareTo
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[537]Character comparation
By g { dot } froehlich { at } gsi { dot } de on 2004/10/02 23:29:11 Rate
ichar = inbyte ( compareTo ( 'a' )
[1705]compareTo Function
By Mohammed Zabin "mszabin { at } yahoo { dot } com" on 2006/02/01 01:57:45 Rate
public class CharTest {
public static void main ( String [ ] args ) {
String str1 = "Mohammed Zabin";
String str2 = "Lamia Hasmi";
String str3 = "Mohammed";
String str4 = "Mohammed";
int cValue = str1.compareTo ( str2 ) ;
if ( cValue == 0 ) {
System.out.println ( "str1 and str2 are equal." ) ;
} else {
System.out.println ( "str1 and str2 are not equal." ) ;
}
int xValue = str3.compareTo ( str4 ) ;
if ( xValue == 0 ) {
System.out.println ( "str3 and str4 are equal." ) ;
} else {
System.out.println ( "str3 and str4 are not equal." ) ;
}
}
}
public int compareTo(Object o)
- See Also:
Comparable
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte CONNECTOR_PUNCTUATION
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte CONTROL
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte CURRENCY_SYMBOL
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DASH_PUNCTUATION
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DECIMAL_DIGIT_NUMBER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int digit(char ch,
int radix)
- See Also:
isDigit(char)
, forDigit(int, int)
, digit(int, int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int digit(int codePoint,
int radix)
- See Also:
isDigit(int)
, forDigit(int, int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_ARABIC_NUMBER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_BOUNDARY_NEUTRAL
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_COMMON_NUMBER_SEPARATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_EUROPEAN_NUMBER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_LEFT_TO_RIGHT
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_NONSPACING_MARK
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_OTHER_NEUTRALS
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_PARAGRAPH_SEPARATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_POP_DIRECTIONAL_FORMAT
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_RIGHT_TO_LEFT
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_SEGMENT_SEPARATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_UNDEFINED
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte DIRECTIONALITY_WHITESPACE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ENCLOSING_MARK
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte END_PUNCTUATION
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public boolean equals(Object obj)
- See Also:
Hashtable
, Object.hashCode()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte FINAL_QUOTE_PUNCTUATION
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static char forDigit(int digit,
int radix)
- See Also:
digit(char, int)
, MAX_RADIX
, MIN_RADIX
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[1462]A to Z char representation in the specified radix
By Anonymous on 2005/06/24 11:31:42 Rate
for ( int i = Character.getNumericValue ( 'A' ) ; i < = Character.getNumericValue ( 'Z' ) ; i++ ) {
System.out.println ( Character.forDigit ( i, 36 ) ) ;
}
public static final byte FORMAT
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static byte getDirectionality(char ch)
- See Also:
DIRECTIONALITY_POP_DIRECTIONAL_FORMAT
, DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE
, DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING
, DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE
, DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING
, DIRECTIONALITY_OTHER_NEUTRALS
, DIRECTIONALITY_WHITESPACE
, DIRECTIONALITY_SEGMENT_SEPARATOR
, DIRECTIONALITY_PARAGRAPH_SEPARATOR
, DIRECTIONALITY_BOUNDARY_NEUTRAL
, DIRECTIONALITY_NONSPACING_MARK
, DIRECTIONALITY_COMMON_NUMBER_SEPARATOR
, DIRECTIONALITY_ARABIC_NUMBER
, DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR
, DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR
, DIRECTIONALITY_EUROPEAN_NUMBER
, DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC
, DIRECTIONALITY_RIGHT_TO_LEFT
, DIRECTIONALITY_LEFT_TO_RIGHT
, DIRECTIONALITY_UNDEFINED
, getDirectionality(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static byte getDirectionality(int codePoint)
- See Also:
DIRECTIONALITY_POP_DIRECTIONAL_FORMAT
, DIRECTIONALITY_RIGHT_TO_LEFT_OVERRIDE
, DIRECTIONALITY_RIGHT_TO_LEFT_EMBEDDING
, DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE
, DIRECTIONALITY_LEFT_TO_RIGHT_EMBEDDING
, DIRECTIONALITY_OTHER_NEUTRALS
, DIRECTIONALITY_WHITESPACE
, DIRECTIONALITY_SEGMENT_SEPARATOR
, DIRECTIONALITY_PARAGRAPH_SEPARATOR
, DIRECTIONALITY_BOUNDARY_NEUTRAL
, DIRECTIONALITY_NONSPACING_MARK
, DIRECTIONALITY_COMMON_NUMBER_SEPARATOR
, DIRECTIONALITY_ARABIC_NUMBER
, DIRECTIONALITY_EUROPEAN_NUMBER_TERMINATOR
, DIRECTIONALITY_EUROPEAN_NUMBER_SEPARATOR
, DIRECTIONALITY_EUROPEAN_NUMBER
, DIRECTIONALITY_RIGHT_TO_LEFT_ARABIC
, DIRECTIONALITY_RIGHT_TO_LEFT
, DIRECTIONALITY_LEFT_TO_RIGHT
, DIRECTIONALITY_UNDEFINED
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int getNumericValue(char ch)
- See Also:
isDigit(char)
, forDigit(int, int)
, getNumericValue(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int getNumericValue(int codePoint)
- See Also:
isDigit(int)
, forDigit(int, int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int getType(char ch)
- See Also:
UPPERCASE_LETTER
, UNASSIGNED
, TITLECASE_LETTER
, SURROGATE
, START_PUNCTUATION
, SPACE_SEPARATOR
, PRIVATE_USE
, PARAGRAPH_SEPARATOR
, OTHER_SYMBOL
, OTHER_PUNCTUATION
, OTHER_NUMBER
, OTHER_LETTER
, NON_SPACING_MARK
, MODIFIER_SYMBOL
, MODIFIER_LETTER
, MATH_SYMBOL
, LOWERCASE_LETTER
, LINE_SEPARATOR
, LETTER_NUMBER
, INITIAL_QUOTE_PUNCTUATION
, FORMAT
, FINAL_QUOTE_PUNCTUATION
, END_PUNCTUATION
, ENCLOSING_MARK
, DECIMAL_DIGIT_NUMBER
, DASH_PUNCTUATION
, CURRENCY_SYMBOL
, CONTROL
, CONNECTOR_PUNCTUATION
, COMBINING_SPACING_MARK
, getType(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int getType(int codePoint)
- See Also:
UPPERCASE_LETTER
, UNASSIGNED
, TITLECASE_LETTER
, SURROGATE
, START_PUNCTUATION
, SPACE_SEPARATOR
, PRIVATE_USE
, PARAGRAPH_SEPARATOR
, OTHER_SYMBOL
, OTHER_PUNCTUATION
, OTHER_NUMBER
, OTHER_LETTER
, NON_SPACING_MARK
, MODIFIER_SYMBOL
, MODIFIER_LETTER
, MATH_SYMBOL
, LOWERCASE_LETTER
, LINE_SEPARATOR
, LETTER_NUMBER
, INITIAL_QUOTE_PUNCTUATION
, FORMAT
, FINAL_QUOTE_PUNCTUATION
, END_PUNCTUATION
, ENCLOSING_MARK
, DECIMAL_DIGIT_NUMBER
, DASH_PUNCTUATION
, CURRENCY_SYMBOL
, CONTROL
, CONNECTOR_PUNCTUATION
, COMBINING_SPACING_MARK
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
[1971]
By Mike on 2008/06/20 07:29:44 Rate
char oneChar = '?';
int nType = Character.getType ( oneChar ) ;
if ( nType == Character.DASH_PUNCTUATION )
{
}
public int hashCode()
- See Also:
Hashtable
, Object.equals(java.lang.Object)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte INITIAL_QUOTE_PUNCTUATION
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isDefined(char ch)
- See Also:
isUpperCase(char)
, isTitleCase(char)
, isLowerCase(char)
, isLetterOrDigit(char)
, isLetter(char)
, isDigit(char)
, isDefined(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isDefined(int codePoint)
- See Also:
isUpperCase(int)
, isTitleCase(int)
, isLowerCase(int)
, isLetterOrDigit(int)
, isLetter(int)
, isDigit(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isDigit(char ch)
- See Also:
getType(char)
, forDigit(int, int)
, digit(char, int)
, isDigit(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isDigit(int codePoint)
- See Also:
getType(int)
, forDigit(int, int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isHighSurrogate(char ch)
- See Also:
Character.UnicodeBlock.of(int)
, isLowSurrogate(char)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isIdentifierIgnorable(char ch)
- See Also:
isUnicodeIdentifierPart(char)
, isJavaIdentifierPart(char)
, isIdentifierIgnorable(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isIdentifierIgnorable(int codePoint)
- See Also:
isUnicodeIdentifierPart(int)
, isJavaIdentifierPart(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isISOControl(char ch)
- See Also:
isWhitespace(char)
, isSpaceChar(char)
, isISOControl(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isISOControl(int codePoint)
- See Also:
isWhitespace(int)
, isSpaceChar(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isJavaIdentifierPart(char ch)
- See Also:
isUnicodeIdentifierPart(char)
, isLetterOrDigit(char)
, isJavaIdentifierStart(char)
, isIdentifierIgnorable(char)
, isJavaIdentifierPart(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isJavaIdentifierPart(int codePoint)
- See Also:
isUnicodeIdentifierPart(int)
, isLetterOrDigit(int)
, isJavaIdentifierStart(int)
, isIdentifierIgnorable(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isJavaIdentifierStart(char ch)
- See Also:
isUnicodeIdentifierStart(char)
, isLetter(char)
, isJavaIdentifierPart(char)
, isJavaIdentifierStart(int)
, getType(ch)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isJavaIdentifierStart(int codePoint)
- See Also:
isUnicodeIdentifierStart(int)
, isLetter(int)
, isJavaIdentifierPart(int)
, getType(codePoint)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
@Deprecated
public static boolean isJavaLetter(char ch)
- See Also:
isUnicodeIdentifierStart(char)
, isLetterOrDigit(char)
, isLetter(char)
, isJavaIdentifierPart(char)
, isJavaIdentifierStart(char)
, isJavaLetterOrDigit(char)
, getType(ch)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
@Deprecated
public static boolean isJavaLetterOrDigit(char ch)
- See Also:
isIdentifierIgnorable(char)
, isUnicodeIdentifierPart(char)
, isLetterOrDigit(char)
, isLetter(char)
, isJavaIdentifierPart(char)
, isJavaIdentifierStart(char)
, isJavaLetter(char)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isLetter(char ch)
- See Also:
isUpperCase(char)
, isUnicodeIdentifierStart(char)
, isTitleCase(char)
, isLowerCase(char)
, isLetterOrDigit(char)
, isJavaLetterOrDigit(char)
, isJavaLetter(char)
, isJavaIdentifierStart(char)
, isDigit(char)
, isLetter(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isLetter(int codePoint)
- See Also:
isUpperCase(int)
, isUnicodeIdentifierStart(int)
, isTitleCase(int)
, isLowerCase(int)
, isLetterOrDigit(int)
, isJavaIdentifierStart(int)
, isDigit(int)
, getType(codePoint)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isLetterOrDigit(char ch)
- See Also:
isUnicodeIdentifierPart(char)
, isLetter(char)
, isJavaLetterOrDigit(char)
, isJavaLetter(char)
, isJavaIdentifierPart(char)
, isDigit(char)
, isLetterOrDigit(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isLetterOrDigit(int codePoint)
- See Also:
isUnicodeIdentifierPart(int)
, isLetter(int)
, isJavaIdentifierPart(int)
, isDigit(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isLowerCase(char ch)
- See Also:
getType(char)
, toLowerCase(char)
, isTitleCase(char)
, isLowerCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isLowerCase(int codePoint)
- See Also:
getType(int)
, toLowerCase(int)
, isTitleCase(int)
, getType(codePoint)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isLowSurrogate(char ch)
- See Also:
isHighSurrogate(char)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isMirrored(char ch)
- See Also:
isMirrored(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isMirrored(int codePoint)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
@Deprecated
public static boolean isSpace(char ch)
- See Also:
isWhitespace(char)
, isSpaceChar(char)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isSpaceChar(char ch)
- See Also:
isWhitespace(char)
, isSpaceChar(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isSpaceChar(int codePoint)
- See Also:
isWhitespace(int)
, PARAGRAPH_SEPARATOR
, LINE_SEPARATOR
, SPACE_SEPARATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isSupplementaryCodePoint(int codePoint)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isSurrogatePair(char high,
char low)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isTitleCase(char ch)
- See Also:
getType(char)
, toTitleCase(char)
, isUpperCase(char)
, isLowerCase(char)
, isTitleCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isTitleCase(int codePoint)
- See Also:
getType(int)
, toTitleCase(int)
, isUpperCase(int)
, isLowerCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isUnicodeIdentifierPart(char ch)
- See Also:
isUnicodeIdentifierStart(char)
, isLetterOrDigit(char)
, isJavaIdentifierPart(char)
, isIdentifierIgnorable(char)
, isUnicodeIdentifierPart(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isUnicodeIdentifierPart(int codePoint)
- See Also:
isUnicodeIdentifierStart(int)
, isLetterOrDigit(int)
, isJavaIdentifierPart(int)
, isIdentifierIgnorable(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isUnicodeIdentifierStart(char ch)
- See Also:
isUnicodeIdentifierPart(char)
, isLetter(char)
, isJavaIdentifierStart(char)
, isUnicodeIdentifierStart(int)
, getType(ch)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isUnicodeIdentifierStart(int codePoint)
- See Also:
isUnicodeIdentifierPart(int)
, isLetter(int)
, isJavaIdentifierStart(int)
, getType(codePoint)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isUpperCase(char ch)
- See Also:
getType(char)
, toUpperCase(char)
, isTitleCase(char)
, isLowerCase(char)
, isUpperCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isUpperCase(int codePoint)
- See Also:
getType(int)
, toUpperCase(int)
, isTitleCase(int)
, isLowerCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isValidCodePoint(int codePoint)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isWhitespace(char ch)
- See Also:
isSpaceChar(char)
, isWhitespace(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static boolean isWhitespace(int codePoint)
- See Also:
isSpaceChar(int)
, PARAGRAPH_SEPARATOR
, LINE_SEPARATOR
, SPACE_SEPARATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte LETTER_NUMBER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte LINE_SEPARATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte LOWERCASE_LETTER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte MATH_SYMBOL
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final int MAX_CODE_POINT
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final char MAX_HIGH_SURROGATE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final char MAX_LOW_SURROGATE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final int MAX_RADIX
- See Also:
Integer.valueOf(java.lang.String)
, Integer.toString(int, int)
, forDigit(int, int)
, digit(char, int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final char MAX_SURROGATE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final char MAX_VALUE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final int MIN_CODE_POINT
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final char MIN_HIGH_SURROGATE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final char MIN_LOW_SURROGATE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final int MIN_RADIX
- See Also:
Integer.valueOf(java.lang.String)
, Integer.toString(int, int)
, forDigit(int, int)
, digit(char, int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final int MIN_SUPPLEMENTARY_CODE_POINT
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final char MIN_SURROGATE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final char MIN_VALUE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte MODIFIER_LETTER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte MODIFIER_SYMBOL
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte NON_SPACING_MARK
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int offsetByCodePoints(char[] a,
int start,
int count,
int index,
int codePointOffset)
- See Also:
- IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int offsetByCodePoints(CharSequence seq,
int index,
int codePointOffset)
- See Also:
- IndexOutOfBoundsException, NullPointerException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte OTHER_LETTER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte OTHER_NUMBER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte OTHER_PUNCTUATION
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte OTHER_SYMBOL
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte PARAGRAPH_SEPARATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte PRIVATE_USE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static char reverseBytes(char ch)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final int SIZE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte SPACE_SEPARATOR
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte START_PUNCTUATION
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte SURROGATE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte TITLECASE_LETTER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static char[] toChars(int codePoint)
- See Also:
- IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int toChars(int codePoint,
char[] dst,
int dstIndex)
- See Also:
- IndexOutOfBoundsException, NullPointerException, IllegalArgumentException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int toCodePoint(char high,
char low)
- See Also:
isSurrogatePair
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static char toLowerCase(char ch)
- See Also:
String.toLowerCase()
, isLowerCase(char)
, toLowerCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int toLowerCase(int codePoint)
- See Also:
String.toLowerCase()
, isLowerCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public String toString()
- See Also:
- Object
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static String toString(char c)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static char toTitleCase(char ch)
- See Also:
toUpperCase(char)
, toLowerCase(char)
, isTitleCase(char)
, toTitleCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int toTitleCase(int codePoint)
- See Also:
toUpperCase(int)
, toLowerCase(int)
, isTitleCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static char toUpperCase(char ch)
- See Also:
String.toUpperCase()
, isUpperCase(char)
, toUpperCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static int toUpperCase(int codePoint)
- See Also:
String.toUpperCase()
, isUpperCase(int)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final Class<Character> TYPE
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte UNASSIGNED
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte UPPERCASE_LETTER
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static Character valueOf(char c)
- See Also:
Character(char)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples