public class Entities extends Object
该类采用一个hash表和lookup查找表相结合的算法,确保搜索entities的性能。
Modifier and Type | Field and Description |
---|---|
static Entities |
HTML32
HTML 3.2规范定义的实体集。
|
static Entities |
HTML40
HTML 4.0规范定义的实体集。
|
static Entities |
HTML40_MODIFIED
HTML 4.0规范定义的实体集,加上对单引号的转义,以增加HTML安全性。
|
static Entities |
XML
XML规范定义的实体集。
|
Constructor and Description |
---|
Entities() |
Entities(Entities entities)
复制entities。
|
Modifier and Type | Method and Description |
---|---|
void |
addEntities(String[][] entitySet)
添加一组entities。
|
void |
addEntity(String name,
int value)
添加一个entity。
|
String |
getEntityName(int value)
取得指定值对应的entity名称。
|
int |
getEntityValue(String name)
取得指定entity名称对应的entity值。
|
public static final Entities XML
public static final Entities HTML32
public static final Entities HTML40
public static final Entities HTML40_MODIFIED
public Entities()
public Entities(Entities entities)
public void addEntities(String[][] entitySet)
entitySet
- entity定义数组public void addEntity(String name, int value)
name
- entity名称value
- entity值public String getEntityName(int value)
value
- entity的值public int getEntityValue(String name)
name
- entity的名称Copyright © 2006–2018 TinyGroup. All rights reserved.