-
- 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
-
-
字段汇总
-
Fields declared in 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
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 EntityDeclaration
getDeclaration()
返回此实体的声明。String
getName()
实体的名称-
声明方法的接口 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()
实体的名称- 结果
- 实体的名称,不能为空
-
-