Lines Matching defs:Character

36  * Character data is based upon the Unicode Standard, 4.0. The Unicode
56 public final class Character implements Serializable, Comparable<Character> {
62 * The minimum {@code Character} value.
67 * The maximum {@code Character} value.
85 public static final Class<Character> TYPE
86 = (Class<Character>) char[].class.getComponentType();
89 // defined to be "java.lang.Character.TYPE";
453 * The number of bits required to represent a {@code Character} value
957 * The &quot;Optical Character Recognition&quot; Unicode Block.
1477 * Constructs a new {@code Character} with the specified primitive char
1483 public Character(char value) {
1510 public int compareTo(Character c) {
1515 * Returns a {@code Character} instance for the {@code char} value passed.
1517 * If it is not necessary to get a new {@code Character} instance, it is
1522 * the char value for which to get a {@code Character} instance.
1523 * @return the {@code Character} instance for {@code c}.
1526 public static Character valueOf(char c) {
1527 return c < 128 ? SMALL_VALUES[c] : new Character(c);
1533 private static final Character[] SMALL_VALUES = new Character[128];
1537 SMALL_VALUES[i] = new Character((char) i);
2304 * {@code Character} and have the same char value as this object.
2309 * {@code Character}; {@code false} otherwise.
2313 return (object instanceof Character)
2314 && (value == ((Character) object).value);
2415 // the spec says.RI's Character type values skip the value 17.
2416 if (type <= Character.FORMAT) {
2453 if (getType(codePoint) == Character.UNASSIGNED) {
2454 return Character.DIRECTIONALITY_UNDEFINED;