-
- All Superinterfaces:
-
XMLEvent
,XMLStreamConstants
public interface NotationDeclaration extends XMLEvent
用于处理符号声明的接口接收符号声明事件的通知。 由应用程序来记录符号以供以后参考,至少有一个publicId和systemId必须是非空的。 不能保证在使用它的任何未解析的实体之前报告符号声明。- 从以下版本开始:
- 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 方法 描述 String
getName()
符号名称。String
getPublicId()
符号的公共标识符,如果没有给定,则为null。String
getSystemId()
符号的系统标识符,如果没有给定,则为null。-
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
-
-