Method Summary |
|
public char | charValue() Return the character contained in this object. |
public Object | clone() Return a clone of this object. |
public int | compareTo(Object op2) Compare this to op2, returning a comparison code. |
public JMLChar | dividedBy(JMLChar i2) Return a new object containing the quotient of this object's
char value divided by that of the given argument. |
public boolean | equals(Object obj) Test whether this object's value is equal to the given argument. |
public Character | getChar() Return a Character object containing this object's character. |
public boolean | greaterThan(JMLChar i2) Tell whether this this object's char value is strictly greater
than that of the given argument. |
public boolean | greaterThanOrEqualTo(JMLChar i2) Tell whether this this object's char value is greater
than or equal to that of the given argument. |
public int | hashCode() Return a hash code for this object. |
public int | intValue() Return the integer corresponding to this character. |
public boolean | lessThan(JMLChar i2) Tell whether this this object's char value is strictly less
than that of the given argument. |
public boolean | lessThanOrEqualTo(JMLChar i2) Tell whether this this object's char value is less
than or equal to that of the given argument. |
public JMLChar | minus(JMLChar i2) Return a new object containing the difference between of this object's
char value and that of the given argument. |
public JMLChar | plus(JMLChar i2) Return a new object containing the sum of this object's
char value and that of the given argument. |
public JMLChar | remainderBy(JMLChar i2) Return a new object containing the remainder of this object's
char value divided by that of the given argument. |
public JMLChar | times(JMLChar i2) Return a new object containing the product of this object's
char value and that of the given argument. |
public String | toString() Return a string representation of this object. |