Home | History | Annotate | Download | only in util

Lines Matching refs:canonical

49  *         <td>Canonical (Java) name</td>

797 private String canonical = null;
801 private Charset(String canonical, String mime, String[] aliases) {
802 this.canonical = canonical;
808 return this.canonical.compareTo(c.canonical);
1002 * Contains the canonical names of character sets which can be used to
1008 * Contains the canonical names of character sets which can be used to
1025 String s = new String(dummy, JAVA_CHARSETS[i].canonical);
1026 decodingSupported.add(JAVA_CHARSETS[i].canonical.toLowerCase());
1031 "dummy".getBytes(JAVA_CHARSETS[i].canonical);
1032 encodingSupported.add(JAVA_CHARSETS[i].canonical.toLowerCase());
1041 charsetMap.put(c.canonical.toLowerCase(), c);
1131 * Use {@link #toJavaCharset(String)} to get the canonical Java character
1146 * Use {@link #toJavaCharset(String)} to get the canonical Java character
1173 * Gets the canonical Java character set name for the specified
1181 * @return the canonical Java name or <code>null</code> if not known.
1186 return c.canonical;
1222 sb.append(" * <td>Canonical (Java) name</td>\n");
1230 sb.append(" * <td>" + c.canonical + "</td>\n");