- 所有超级接口:
-
XMLEvent
,XMLStreamConstants
用于处理实体声明的接口。此接口用于记录和报告未解析的实体声明。
- 自1.6版本起:
- 1.6
-
Field Summary
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
-
Method Summary
Modifier and TypeMethodDescription获取此引用的基本URI,如果此信息不可用,则返回nullgetName()
实体的名称关联符号的名称。实体的公共标识符,如果没有给出则为null实体的替换文本。实体的系统标识符。Methods declared in interface javax.xml.stream.events.XMLEvent
asCharacters, asEndElement, asStartElement, getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
-
Method Details
-
getPublicId
String getPublicId()实体的公共标识符,如果没有给出则为null- 返回:
- 此声明的公共ID或null
-
getSystemId
String getSystemId()实体的系统标识符。- 返回:
- 此声明的系统ID或null
-
getName
String getName()实体的名称- 返回:
- 名称,不得为null
-
getNotationName
String getNotationName()关联符号的名称。- 返回:
- 符号名称
-
getReplacementText
String getReplacementText()实体的替换文本。仅当这是内部实体时,此方法才会返回非null。- 返回:
- null或替换文本
-
getBaseURI
String getBaseURI()获取此引用的基本URI,如果此信息不可用,则返回null- 返回:
- 基本URI或null
-