📄 characterentityreference.java
字号:
/** <samp>‹</samp> <code>&lsaquo; = &#8249;</code> -- single left-pointing angle quotation mark, U+2039 ISO proposed<br />(see <a href="#_lsaquo">comments</a>).<p>lsaquo is proposed but not yet ISO standardized</p> */
public static final char _lsaquo='\u2039';
/** <samp>›</samp> <code>&rsaquo; = &#8250;</code> -- single right-pointing angle quotation mark, U+203A ISO proposed<br />(see <a href="#_rsaquo">comments</a>).<p>rsaquo is proposed but not yet ISO standardized</p> */
public static final char _rsaquo='\u203A';
/** <samp>€</samp> <code>&euro; = &#8364;</code> -- euro sign, U+20AC NEW. */
public static final char _euro='\u20AC';
/**
* <samp>'</samp> <code>&apos; = &#39;</code> -- apostrophe = APL quote, U+0027 ISOnum<br />(see <a href="#_apos">comments</a>).<p>
* apos is only defined for use in XHTML
* (see the <a target="_blank" href="http://www.w3.org/TR/xhtml1/dtds.html#a_dtd_Special_characters">XHTML Special Characters Entity Set</a>),
* but not in HTML.
* @see Config#IsApostropheEncoded
*/
public static final char _apos='\'';
private static Map<String,Integer> NAME_TO_CODE_POINT_MAP=new HashMap<String,Integer>(512,1.0F); // 253 entities in total
private static IntStringHashMap CODE_POINT_TO_NAME_MAP;
private static int MAX_NAME_LENGTH=0;
static {
NAME_TO_CODE_POINT_MAP.put("nbsp",new Integer(_nbsp));
NAME_TO_CODE_POINT_MAP.put("iexcl",new Integer(_iexcl));
NAME_TO_CODE_POINT_MAP.put("cent",new Integer(_cent));
NAME_TO_CODE_POINT_MAP.put("pound",new Integer(_pound));
NAME_TO_CODE_POINT_MAP.put("curren",new Integer(_curren));
NAME_TO_CODE_POINT_MAP.put("yen",new Integer(_yen));
NAME_TO_CODE_POINT_MAP.put("brvbar",new Integer(_brvbar));
NAME_TO_CODE_POINT_MAP.put("sect",new Integer(_sect));
NAME_TO_CODE_POINT_MAP.put("uml",new Integer(_uml));
NAME_TO_CODE_POINT_MAP.put("copy",new Integer(_copy));
NAME_TO_CODE_POINT_MAP.put("ordf",new Integer(_ordf));
NAME_TO_CODE_POINT_MAP.put("laquo",new Integer(_laquo));
NAME_TO_CODE_POINT_MAP.put("not",new Integer(_not));
NAME_TO_CODE_POINT_MAP.put("shy",new Integer(_shy));
NAME_TO_CODE_POINT_MAP.put("reg",new Integer(_reg));
NAME_TO_CODE_POINT_MAP.put("macr",new Integer(_macr));
NAME_TO_CODE_POINT_MAP.put("deg",new Integer(_deg));
NAME_TO_CODE_POINT_MAP.put("plusmn",new Integer(_plusmn));
NAME_TO_CODE_POINT_MAP.put("sup2",new Integer(_sup2));
NAME_TO_CODE_POINT_MAP.put("sup3",new Integer(_sup3));
NAME_TO_CODE_POINT_MAP.put("acute",new Integer(_acute));
NAME_TO_CODE_POINT_MAP.put("micro",new Integer(_micro));
NAME_TO_CODE_POINT_MAP.put("para",new Integer(_para));
NAME_TO_CODE_POINT_MAP.put("middot",new Integer(_middot));
NAME_TO_CODE_POINT_MAP.put("cedil",new Integer(_cedil));
NAME_TO_CODE_POINT_MAP.put("sup1",new Integer(_sup1));
NAME_TO_CODE_POINT_MAP.put("ordm",new Integer(_ordm));
NAME_TO_CODE_POINT_MAP.put("raquo",new Integer(_raquo));
NAME_TO_CODE_POINT_MAP.put("frac14",new Integer(_frac14));
NAME_TO_CODE_POINT_MAP.put("frac12",new Integer(_frac12));
NAME_TO_CODE_POINT_MAP.put("frac34",new Integer(_frac34));
NAME_TO_CODE_POINT_MAP.put("iquest",new Integer(_iquest));
NAME_TO_CODE_POINT_MAP.put("Agrave",new Integer(_Agrave));
NAME_TO_CODE_POINT_MAP.put("Aacute",new Integer(_Aacute));
NAME_TO_CODE_POINT_MAP.put("Acirc",new Integer(_Acirc));
NAME_TO_CODE_POINT_MAP.put("Atilde",new Integer(_Atilde));
NAME_TO_CODE_POINT_MAP.put("Auml",new Integer(_Auml));
NAME_TO_CODE_POINT_MAP.put("Aring",new Integer(_Aring));
NAME_TO_CODE_POINT_MAP.put("AElig",new Integer(_AElig));
NAME_TO_CODE_POINT_MAP.put("Ccedil",new Integer(_Ccedil));
NAME_TO_CODE_POINT_MAP.put("Egrave",new Integer(_Egrave));
NAME_TO_CODE_POINT_MAP.put("Eacute",new Integer(_Eacute));
NAME_TO_CODE_POINT_MAP.put("Ecirc",new Integer(_Ecirc));
NAME_TO_CODE_POINT_MAP.put("Euml",new Integer(_Euml));
NAME_TO_CODE_POINT_MAP.put("Igrave",new Integer(_Igrave));
NAME_TO_CODE_POINT_MAP.put("Iacute",new Integer(_Iacute));
NAME_TO_CODE_POINT_MAP.put("Icirc",new Integer(_Icirc));
NAME_TO_CODE_POINT_MAP.put("Iuml",new Integer(_Iuml));
NAME_TO_CODE_POINT_MAP.put("ETH",new Integer(_ETH));
NAME_TO_CODE_POINT_MAP.put("Ntilde",new Integer(_Ntilde));
NAME_TO_CODE_POINT_MAP.put("Ograve",new Integer(_Ograve));
NAME_TO_CODE_POINT_MAP.put("Oacute",new Integer(_Oacute));
NAME_TO_CODE_POINT_MAP.put("Ocirc",new Integer(_Ocirc));
NAME_TO_CODE_POINT_MAP.put("Otilde",new Integer(_Otilde));
NAME_TO_CODE_POINT_MAP.put("Ouml",new Integer(_Ouml));
NAME_TO_CODE_POINT_MAP.put("times",new Integer(_times));
NAME_TO_CODE_POINT_MAP.put("Oslash",new Integer(_Oslash));
NAME_TO_CODE_POINT_MAP.put("Ugrave",new Integer(_Ugrave));
NAME_TO_CODE_POINT_MAP.put("Uacute",new Integer(_Uacute));
NAME_TO_CODE_POINT_MAP.put("Ucirc",new Integer(_Ucirc));
NAME_TO_CODE_POINT_MAP.put("Uuml",new Integer(_Uuml));
NAME_TO_CODE_POINT_MAP.put("Yacute",new Integer(_Yacute));
NAME_TO_CODE_POINT_MAP.put("THORN",new Integer(_THORN));
NAME_TO_CODE_POINT_MAP.put("szlig",new Integer(_szlig));
NAME_TO_CODE_POINT_MAP.put("agrave",new Integer(_agrave));
NAME_TO_CODE_POINT_MAP.put("aacute",new Integer(_aacute));
NAME_TO_CODE_POINT_MAP.put("acirc",new Integer(_acirc));
NAME_TO_CODE_POINT_MAP.put("atilde",new Integer(_atilde));
NAME_TO_CODE_POINT_MAP.put("auml",new Integer(_auml));
NAME_TO_CODE_POINT_MAP.put("aring",new Integer(_aring));
NAME_TO_CODE_POINT_MAP.put("aelig",new Integer(_aelig));
NAME_TO_CODE_POINT_MAP.put("ccedil",new Integer(_ccedil));
NAME_TO_CODE_POINT_MAP.put("egrave",new Integer(_egrave));
NAME_TO_CODE_POINT_MAP.put("eacute",new Integer(_eacute));
NAME_TO_CODE_POINT_MAP.put("ecirc",new Integer(_ecirc));
NAME_TO_CODE_POINT_MAP.put("euml",new Integer(_euml));
NAME_TO_CODE_POINT_MAP.put("igrave",new Integer(_igrave));
NAME_TO_CODE_POINT_MAP.put("iacute",new Integer(_iacute));
NAME_TO_CODE_POINT_MAP.put("icirc",new Integer(_icirc));
NAME_TO_CODE_POINT_MAP.put("iuml",new Integer(_iuml));
NAME_TO_CODE_POINT_MAP.put("eth",new Integer(_eth));
NAME_TO_CODE_POINT_MAP.put("ntilde",new Integer(_ntilde));
NAME_TO_CODE_POINT_MAP.put("ograve",new Integer(_ograve));
NAME_TO_CODE_POINT_MAP.put("oacute",new Integer(_oacute));
NAME_TO_CODE_POINT_MAP.put("ocirc",new Integer(_ocirc));
NAME_TO_CODE_POINT_MAP.put("otilde",new Integer(_otilde));
NAME_TO_CODE_POINT_MAP.put("ouml",new Integer(_ouml));
NAME_TO_CODE_POINT_MAP.put("divide",new Integer(_divide));
NAME_TO_CODE_POINT_MAP.put("oslash",new Integer(_oslash));
NAME_TO_CODE_POINT_MAP.put("ugrave",new Integer(_ugrave));
NAME_TO_CODE_POINT_MAP.put("uacute",new Integer(_uacute));
NAME_TO_CODE_POINT_MAP.put("ucirc",new Integer(_ucirc));
NAME_TO_CODE_POINT_MAP.put("uuml",new Integer(_uuml));
NAME_TO_CODE_POINT_MAP.put("yacute",new Integer(_yacute));
NAME_TO_CODE_POINT_MAP.put("thorn",new Integer(_thorn));
NAME_TO_CODE_POINT_MAP.put("yuml",new Integer(_yuml));
NAME_TO_CODE_POINT_MAP.put("fnof",new Integer(_fnof));
NAME_TO_CODE_POINT_MAP.put("Alpha",new Integer(_Alpha));
NAME_TO_CODE_POINT_MAP.put("Beta",new Integer(_Beta));
NAME_TO_CODE_POINT_MAP.put("Gamma",new Integer(_Gamma));
NAME_TO_CODE_POINT_MAP.put("Delta",new Integer(_Delta));
NAME_TO_CODE_POINT_MAP.put("Epsilon",new Integer(_Epsilon));
NAME_TO_CODE_POINT_MAP.put("Zeta",new Integer(_Zeta));
NAME_TO_CODE_POINT_MAP.put("Eta",new Integer(_Eta));
NAME_TO_CODE_POINT_MAP.put("Theta",new Integer(_Theta));
NAME_TO_CODE_POINT_MAP.put("Iota",new Integer(_Iota));
NAME_TO_CODE_POINT_MAP.put("Kappa",new Integer(_Kappa));
NAME_TO_CODE_POINT_MAP.put("Lambda",new Integer(_Lambda));
NAME_TO_CODE_POINT_MAP.put("Mu",new Integer(_Mu));
NAME_TO_CODE_POINT_MAP.put("Nu",new Integer(_Nu));
NAME_TO_CODE_POINT_MAP.put("Xi",new Integer(_Xi));
NAME_TO_CODE_POINT_MAP.put("Omicron",new Integer(_Omicron));
NAME_TO_CODE_POINT_MAP.put("Pi",new Integer(_Pi));
NAME_TO_CODE_POINT_MAP.put("Rho",new Integer(_Rho));
NAME_TO_CODE_POINT_MAP.put("Sigma",new Integer(_Sigma));
NAME_TO_CODE_POINT_MAP.put("Tau",new Integer(_Tau));
NAME_TO_CODE_POINT_MAP.put("Upsilon",new Integer(_Upsilon));
NAME_TO_CODE_POINT_MAP.put("Phi",new Integer(_Phi));
NAME_TO_CODE_POINT_MAP.put("Chi",new Integer(_Chi));
NAME_TO_CODE_POINT_MAP.put("Psi",new Integer(_Psi));
NAME_TO_CODE_POINT_MAP.put("Omega",new Integer(_Omega));
NAME_TO_CODE_POINT_MAP.put("alpha",new Integer(_alpha));
NAME_TO_CODE_POINT_MAP.put("beta",new Integer(_beta));
NAME_TO_CODE_POINT_MAP.put("gamma",new Integer(_gamma));
NAME_TO_CODE_POINT_MAP.put("delta",new Integer(_delta));
NAME_TO_CODE_POINT_MAP.put("epsilon",new Integer(_epsilon));
NAME_TO_CODE_POINT_MAP.put("zeta",new Integer(_zeta));
NAME_TO_CODE_POINT_MAP.put("eta",new Integer(_eta));
NAME_TO_CODE_POINT_MAP.put("theta",new Integer(_theta));
NAME_TO_CODE_POINT_MAP.put("iota",new Integer(_iota));
NAME_TO_CODE_POINT_MAP.put("kappa",new Integer(_kappa));
NAME_TO_CODE_POINT_MAP.put("lambda",new Integer(_lambda));
NAME_TO_CODE_POINT_MAP.put("mu",new Integer(_mu));
NAME_TO_CODE_POINT_MAP.put("nu",new Integer(_nu));
NAME_TO_CODE_POINT_MAP.put("xi",new Integer(_xi));
NAME_TO_CODE_POINT_MAP.put("omicron",new Integer(_omicron));
NAME_TO_CODE_POINT_MAP.put("pi",new Integer(_pi));
NAME_TO_CODE_POINT_MAP.put("rho",new Integer(_rho));
NAME_TO_CODE_POINT_MAP.put("sigmaf",new Integer(_sigmaf));
NAME_TO_CODE_POINT_MAP.put("sigma",new Integer(_sigma));
NAME_TO_CODE_POINT_MAP.put("tau",new Integer(_tau));
NAME_TO_CODE_POINT_MAP.put("upsilon",new Integer(_upsilon));
NAME_TO_CODE_POINT_MAP.put("phi",new Integer(_phi));
NAME_TO_CODE_POINT_MAP.put("chi",new Integer(_chi));
NAME_TO_CODE_POINT_MAP.put("psi",new Integer(_psi));
NAME_TO_CODE_POINT_MAP.put("omega",new Integer(_omega));
NAME_TO_CODE_POINT_MAP.put("thetasym",new Integer(_thetasym));
NAME_TO_CODE_POINT_MAP.put("upsih",new Integer(_upsih));
NAME_TO_CODE_POINT_MAP.put("piv",new Integer(_piv));
NAME_TO_CODE_POINT_MAP.put("bull",new Integer(_bull));
NAME_TO_CODE_POINT_MAP.put("hellip",new Integer(_hellip));
NAME_TO_CODE_POINT_MAP.put("prime",new Integer(_prime));
NAME_TO_CODE_POINT_MAP.put("Prime",new Integer(_Prime));
NAME_TO_CODE_POINT_MAP.put("oline",new Integer(_oline));
NAME_TO_CODE_POINT_MAP.put("frasl",new Integer(_frasl));
NAME_TO_CODE_POINT_MAP.put("weierp",new Integer(_weierp));
NAME_TO_CODE_POINT_MAP.put("image",new Integer(_image));
NAME_TO_CODE_POINT_MAP.put("real",new Integer(_real));
NAME_TO_CODE_POINT_MAP.put("trade",new Integer(_trade));
NAME_TO_CODE_POINT_MAP.put("alefsym",new Integer(_alefsym));
NAME_TO_CODE_POINT_MAP.put("larr",new Integer(_larr));
NAME_TO_CODE_POINT_MAP.put("uarr",new Integer(_uarr));
NAME_TO_CODE_POINT_MAP.put("rarr",new Integer(_rarr));
NAME_TO_CODE_POINT_MAP.put("darr",new Integer(_darr));
NAME_TO_CODE_POINT_MAP.put("harr",new Integer(_harr));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -