Return type | Name and parameters |
---|---|
boolean
|
asBoolean()
Coerce a character to a boolean value. |
int
|
compareTo(Number right)
Compare a Character and a Number. |
int
|
compareTo(Character right)
Compare two Characters. |
Number
|
div(Number right)
Divide a Character by a Number. |
Number
|
div(Character right)
Divide one Character by another. |
Number
|
intdiv(Number right)
Integer Divide a Character by a Number. |
Number
|
intdiv(Character right)
Integer Divide two Characters. |
boolean
|
isDigit()
Determines if a character is a digit. |
boolean
|
isLetter()
Determines if a character is a letter. |
boolean
|
isLetterOrDigit()
Determines if a character is a letter or digit. |
boolean
|
isLowerCase()
Determine if a Character is lowercase. |
boolean
|
isUpperCase()
Determine if a Character is uppercase. |
boolean
|
isWhitespace()
Determines if a character is a whitespace character. |
Number
|
minus(Number right)
Subtract a Number from a Character. |
Number
|
minus(Character right)
Subtract one Character from another. |
Number
|
multiply(Number right)
Multiply a Character by a Number. |
Number
|
multiply(Character right)
Multiply two Characters. |
Character
|
next()
Increment a Character by one. |
Number
|
plus(Number right)
Add a Character and a Number. |
Number
|
plus(Character right)
Add one Character to another. |
Character
|
previous()
Decrement a Character by one. |
char
|
toLowerCase()
Converts the character to lowercase. |
char
|
toUpperCase()
Converts the character to uppercase. |
Coerce a character to a boolean value. A character is coerced to false if it's character value is equal to 0, and to true otherwise.
Compare a Character and a Number. The ordinal value of the Character is used in the comparison (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- a Number.Compare two Characters. The ordinal values of the Characters are compared (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- a Character.Divide a Character by a Number. The ordinal value of the Character is used in the division (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- a Number.Divide one Character by another. The ordinal values of the Characters are used in the division (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- another Character.Integer Divide a Character by a Number. The ordinal value of the Character is used in the division (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- a Number.Integer Divide two Characters. The ordinal values of the Characters are used in the division (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- another Character.Determines if a character is a digit. Synonym for 'Character.isDigit(this)'.
Determines if a character is a letter. Synonym for 'Character.isLetter(this)'.
Determines if a character is a letter or digit. Synonym for 'Character.isLetterOrDigit(this)'.
Determine if a Character is lowercase. Synonym for 'Character.isLowerCase(this)'.
Determine if a Character is uppercase. Synonym for 'Character.isUpperCase(this)'.
Determines if a character is a whitespace character. Synonym for 'Character.isWhitespace(this)'.
Subtract a Number from a Character. The ordinal value of the Character is used in the subtraction (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- a Number.Subtract one Character from another. The ordinal values of the Characters is used in the comparison (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- a Character.Multiply a Character by a Number. The ordinal value of the Character is used in the multiplication (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- a Number.Multiply two Characters. The ordinal values of the Characters are used in the multiplication (the ordinal value is the unicode value which for simple character sets is the ASCII value).
right
- another Character.Increment a Character by one.
Add a Character and a Number. The ordinal value of the Character is used in the addition (the ordinal value is the unicode value which for simple character sets is the ASCII value). This operation will always create a new object for the result, while the operands remain unchanged.
right
- a Number.Add one Character to another. The ordinal values of the Characters are used in the addition (the ordinal value is the unicode value which for simple character sets is the ASCII value). This operation will always create a new object for the result, while the operands remain unchanged.
right
- a Character.Decrement a Character by one.
Converts the character to lowercase. Synonym for 'Character.toLowerCase(this)'.
Converts the character to uppercase. Synonym for 'Character.toUpperCase(this)'.