gnu.text
public class Char extends Object implements Comparable, Externalizable
Constructor Summary | |
---|---|
Char() Should only be used for serialization. |
Method Summary | |
---|---|
char | charValue() |
int | compareTo(Object o) |
boolean | equals(Object obj) |
int | hashCode() |
int | intValue() |
static Char | make(int ch) |
static int | nameToChar(String name) |
void | print(Consumer out) |
static void | print(int i, Consumer out) |
void | readExternal(ObjectInput in) |
Object | readResolve() |
static String | toScmReadableString(int ch) |
String | toString() |
void | writeExternal(ObjectOutput out) |
Serial Data: Writes the char value as a char. If the value is > 0xFFFF, write a pair of surrogate values. If the value is is a high surrogate only, write it followed by '\0'.