-
- All Superinterfaces:
-
XMLEvent
,XMLStreamConstants
public interface EntityReference extends XMLEvent
用于处理实体事件的界面。 此事件报告尚未解决的实体,并报告未处理的替换文本(如果可用)。 如果javax.xml.stream.isReplacingEntityReferences设置为false,则会报告此事件。 如果将javax.xml.stream.isReplacingEntityReferences设置为true,则实体引用将被透明地解析。 实体以两种可能的方式处理:(1)如果将javax.xml.stream.isReplacingEntityReferences设置为true,则所有实体引用都将被解析并以透明方式报告为标记。 (2)如果javax.xml.stream.isReplacingEntityReferences设置为false,则实体引用将被报告为EntityReference事件。- 从以下版本开始:
- 1.6
- Version:
- 1.0
-
-
Field Summary
-
Fields inherited from interface javax.xml.stream.XMLStreamConstants
ATTRIBUTE, CDATA, CHARACTERS, COMMENT, DTD, END_DOCUMENT, END_ELEMENT, ENTITY_DECLARATION, ENTITY_REFERENCE, NAMESPACE, NOTATION_DECLARATION, PROCESSING_INSTRUCTION, SPACE, START_DOCUMENT, START_ELEMENT
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 EntityDeclaration
getDeclaration()
返回该实体的声明。String
getName()
实体的名称-
Methods inherited from interface javax.xml.stream.events.XMLEvent
asCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
-
-
-
-
方法详细信息
-
getDeclaration
EntityDeclaration getDeclaration()
返回该实体的声明。
-
getName
String getName()
实体的名称- 结果
- 实体的名称可能不为空
-
-