クラス XmlDocumentImpl
- java.lang.Object
-
- org.xmlpull.v1.builder.impl.XmlDocumentImpl
-
- すべての実装されたインタフェース:
Cloneable,XmlContainer,XmlDocument
public class XmlDocumentImpl extends Object implements XmlDocument
-
-
コンストラクタの概要
コンストラクタ コンストラクタ 説明 XmlDocumentImpl(String version, Boolean standalone, String characterEncoding)
-
メソッドの概要
-
-
-
メソッドの詳細
-
clone
public Object clone() throws CloneNotSupportedException
- 定義:
cloneインタフェース内XmlDocument- オーバーライド:
cloneクラス内Object- 例外:
CloneNotSupportedException
-
getVersion
public String getVersion()
- 定義:
getVersionインタフェース内XmlDocument
-
isStandalone
public Boolean isStandalone()
- 定義:
isStandaloneインタフェース内XmlDocument
-
getCharacterEncodingScheme
public String getCharacterEncodingScheme()
- 定義:
getCharacterEncodingSchemeインタフェース内XmlDocument
-
setCharacterEncodingScheme
public void setCharacterEncodingScheme(String characterEncoding)
- 定義:
setCharacterEncodingSchemeインタフェース内XmlDocument
-
newProcessingInstruction
public XmlProcessingInstruction newProcessingInstruction(String target, String content)
- 定義:
newProcessingInstructionインタフェース内XmlDocument
-
addProcessingInstruction
public XmlProcessingInstruction addProcessingInstruction(String target, String content)
- 定義:
addProcessingInstructionインタフェース内XmlDocument
-
children
public Iterable children()
An ordered list of child information items, in document order. The list contains exactly one element information item. The list also contains one processing instruction information item for each processing instruction outside the document element, and one comment information item for each comment outside the document element. Processing instructions and comments within the DTD are excluded. If there is a document type declaration, the list also contains a document type declaration information item.- 定義:
childrenインタフェース内XmlDocument
-
removeAllUnparsedEntities
public void removeAllUnparsedEntities()
- 定義:
removeAllUnparsedEntitiesインタフェース内XmlDocument
-
setDocumentElement
public void setDocumentElement(XmlElement rootElement)
- 定義:
setDocumentElementインタフェース内XmlDocument
-
requiredElement
public XmlElement requiredElement(XmlNamespace n, String name)
- 定義:
requiredElementインタフェース内XmlDocument
-
element
public XmlElement element(XmlNamespace n, String name)
- 定義:
elementインタフェース内XmlDocument
-
element
public XmlElement element(XmlNamespace namespace, String name, boolean create)
- 定義:
elementインタフェース内XmlDocument
-
insertChild
public void insertChild(int pos, Object child)- 定義:
insertChildインタフェース内XmlDocument
-
addComment
public XmlComment addComment(String content)
- 定義:
addCommentインタフェース内XmlDocument
-
newDoctype
public XmlDoctype newDoctype(String systemIdentifier, String publicIdentifier)
- 定義:
newDoctypeインタフェース内XmlDocument
-
unparsedEntities
public Iterable unparsedEntities()
An unordered set of unparsed entity information items, one for each unparsed entity declared in the DTD.- 定義:
unparsedEntitiesインタフェース内XmlDocument
-
removeAllChildren
public void removeAllChildren()
- 定義:
removeAllChildrenインタフェース内XmlDocument
-
newComment
public XmlComment newComment(String content)
- 定義:
newCommentインタフェース内XmlDocument
-
removeAllNotations
public void removeAllNotations()
Method removeAllNotations- 定義:
removeAllNotationsインタフェース内XmlDocument
-
addDoctype
public XmlDoctype addDoctype(String systemIdentifier, String publicIdentifier)
Method addDoctype- 定義:
addDoctypeインタフェース内XmlDocument
-
addChild
public void addChild(Object child)
- 定義:
addChildインタフェース内XmlDocument
-
addNotation
public XmlNotation addNotation(String name, String systemIdentifier, String publicIdentifier, String declarationBaseUri)
Method addNotation- 定義:
addNotationインタフェース内XmlDocument
-
getBaseUri
public String getBaseUri()
- 定義:
getBaseUriインタフェース内XmlDocument
-
notations
public Iterable notations()
An unordered set of notation information items, one for each notation declared in the DTD.- 定義:
notationsインタフェース内XmlDocument
-
addDocumentElement
public XmlElement addDocumentElement(String name)
- 定義:
addDocumentElementインタフェース内XmlDocument
-
addDocumentElement
public XmlElement addDocumentElement(XmlNamespace namespace, String name)
- 定義:
addDocumentElementインタフェース内XmlDocument
-
isAllDeclarationsProcessed
public boolean isAllDeclarationsProcessed()
- 定義:
isAllDeclarationsProcessedインタフェース内XmlDocument
-
getDocumentElement
public XmlElement getDocumentElement()
- 定義:
getDocumentElementインタフェース内XmlDocument
-
-