KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > pao > runtime > Character


1 package polyglot.ext.pao.runtime;
2
3 /**
4  * Boxed chars.
5  */

6 public class Character extends Integer JavaDoc {
7     public Character(char value) {
8         super(value);
9     }
10
11     public char charValue() {
12         return (char)value;
13     }
14
15     public String JavaDoc toString() {
16         return "" + (char)value;
17     }
18 }
Popular Tags