rt/emul/mini/src/main/java/java/lang/Character.java
changeset 1350 f14e9730d4e9
parent 1291 f66bcda82345
child 1384 12a395b571c8
     1.1 --- a/rt/emul/mini/src/main/java/java/lang/Character.java	Sun Sep 22 21:42:48 2013 +0200
     1.2 +++ b/rt/emul/mini/src/main/java/java/lang/Character.java	Mon Oct 07 16:17:21 2013 +0200
     1.3 @@ -572,6 +572,46 @@
     1.4       */
     1.5      public static final int MAX_CODE_POINT = 0X10FFFF;
     1.6  
     1.7 +    public static boolean isAlphabetic(int ch) {
     1.8 +        throw new UnsupportedOperationException("isAlphabetic: " + (char)ch);
     1.9 +    }
    1.10 +
    1.11 +    public static boolean isIdeographic(int ch) {
    1.12 +        throw new UnsupportedOperationException("isIdeographic: " + (char)ch);
    1.13 +    }
    1.14 +
    1.15 +    public static boolean isLowerCase(int ch) {
    1.16 +        throw new UnsupportedOperationException("isLowerCase: " + (char)ch);
    1.17 +    }
    1.18 +
    1.19 +    public static boolean isUpperCase(int ch) {
    1.20 +        throw new UnsupportedOperationException("isUpperCase: " + (char)ch);
    1.21 +    }
    1.22 +
    1.23 +    public static boolean isMirrored(int ch) {
    1.24 +        throw new UnsupportedOperationException("isMirrored: " + (char)ch);
    1.25 +    }
    1.26 +
    1.27 +    public static boolean isIdentifierIgnorable(int ch) {
    1.28 +        throw new UnsupportedOperationException("isIdentifierIgnorable: " + (char)ch);
    1.29 +    }
    1.30 +
    1.31 +    public static boolean isUnicodeIdentifierPart(int ch) {
    1.32 +        throw new UnsupportedOperationException("isUnicodeIdentifierPart: " + (char)ch);
    1.33 +    }
    1.34 +
    1.35 +    public static boolean isUnicodeIdentifierStart(int ch) {
    1.36 +        throw new UnsupportedOperationException("isUnicodeIdentifierStart: " + (char)ch);
    1.37 +    }
    1.38 +
    1.39 +    public static char toUpperCase(int ch) {
    1.40 +        throw new UnsupportedOperationException("toUpperCase: " + (char)ch);
    1.41 +    }
    1.42 +
    1.43 +    public static int toLowerCase(int ch) {
    1.44 +        throw new UnsupportedOperationException("toLowerCase: " + (char)ch);
    1.45 +    }
    1.46 +
    1.47  
    1.48      /**
    1.49       * Instances of this class represent particular subsets of the Unicode
    1.50 @@ -1892,8 +1932,8 @@
    1.51          return fromCodeChars(codePoint).matches("\\w");
    1.52      }
    1.53      
    1.54 -    static int getType(int x) {
    1.55 -        throw new UnsupportedOperationException();
    1.56 +    public static int getType(int x) {
    1.57 +        throw new UnsupportedOperationException("getType: " + (char)x);
    1.58      }
    1.59   
    1.60      /**