jdk/src/java.base/share/classes/java/util/regex/UnicodeProp.java
changeset 32649 2ee9017c7597
parent 25859 3317bb8137f4
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
   200         public boolean is(int ch) {
   200         public boolean is(int ch) {
   201            return (ch == 0x200C || ch == 0x200D);
   201            return (ch == 0x200C || ch == 0x200D);
   202         }
   202         }
   203     };
   203     };
   204 
   204 
   205     private final static HashMap<String, String> posix = new HashMap<>();
   205     private static final HashMap<String, String> posix = new HashMap<>();
   206     private final static HashMap<String, String> aliases = new HashMap<>();
   206     private static final HashMap<String, String> aliases = new HashMap<>();
   207     static {
   207     static {
   208         posix.put("ALPHA", "ALPHABETIC");
   208         posix.put("ALPHA", "ALPHABETIC");
   209         posix.put("LOWER", "LOWERCASE");
   209         posix.put("LOWER", "LOWERCASE");
   210         posix.put("UPPER", "UPPERCASE");
   210         posix.put("UPPER", "UPPERCASE");
   211         posix.put("SPACE", "WHITE_SPACE");
   211         posix.put("SPACE", "WHITE_SPACE");