< prev index next >

src/java.base/share/classes/sun/text/normalizer/SymbolTable.java

Print this page

        

*** 76,86 **** @Deprecated static final char SYMBOL_REF = '$'; /** * Lookup the characters associated with this string and return it. ! * Return <tt>null</tt> if no such name exists. The resultant * array may have length zero. * @param s the symbolic name to lookup * @return a char array containing the name's value, or null if * there is no mapping for s. * @draft ICU 2.8 --- 76,86 ---- @Deprecated static final char SYMBOL_REF = '$'; /** * Lookup the characters associated with this string and return it. ! * Return {@code null} if no such name exists. The resultant * array may have length zero. * @param s the symbolic name to lookup * @return a char array containing the name's value, or null if * there is no mapping for s. * @draft ICU 2.8
*** 89,99 **** @Deprecated char[] lookup(String s); /** * Lookup the UnicodeMatcher associated with the given character, and ! * return it. Return <tt>null</tt> if not found. * @param ch a 32-bit code point from 0 to 0x10FFFF inclusive. * @return the UnicodeMatcher object represented by the given * character, or null if there is no mapping for ch. * @draft ICU 2.8 * @deprecated This is a draft API and might change in a future release of ICU. --- 89,99 ---- @Deprecated char[] lookup(String s); /** * Lookup the UnicodeMatcher associated with the given character, and ! * return it. Return {@code null} if not found. * @param ch a 32-bit code point from 0 to 0x10FFFF inclusive. * @return the UnicodeMatcher object represented by the given * character, or null if there is no mapping for ch. * @draft ICU 2.8 * @deprecated This is a draft API and might change in a future release of ICU.
< prev index next >