init(kind: XMLNode.Kind)
Returns an
NSXMLNode
instance initialized with the constant indicating node kind.
NSXMLNode
インスタンスを返します、ノード種類を指し示している定数で初期化されます。
init(kind: XMLNode.Kind, options: XMLNode.Options)
Returns an
NSXMLNode
instance initialized with the constant indicating node kind and one or more initialization options.
NSXMLNode
インスタンスを返します、ノード種類を指し示している定数そして1つ以上の初期化オプションで初期化されます。
class func document() -> Any
Returns an empty document node.
ある空の書類ノードを返します。
class func element(withName : String) -> Any
Returns an
XMLElement
object with a given tag identifier, or name
XMLElement
オブジェクトを返します、与えられたタグ識別子、または名前を持ちます。
class func element(withName : String, children: [XMLNode]?, attributes: [XMLNode]?) -> Any
Returns an
XMLElement
object with the given tag (name), attributes, and children.
XMLElement
オブジェクトを返します、与えられたタグ(名前)、属性、そして子を持ちます。
class func element(withName : String, stringValue : String) -> Any
Returns an
XMLElement
object with a single text-node child containing the specified text.
XMLElement
オブジェクトを返します、指定されたテキストを含んでいる単一のテキストノード子を持ちます。
class func element(withName : String, uri: String) -> Any
Returns an element whose fully qualified name is specified.
それの完全修飾名が指定されるある要素を返します。
class func attribute(withName : String, stringValue : String) -> Any
Returns an
NSXMLNode
object representing an attribute node with a given name and string.
NSXMLNode
オブジェクトを返します、与えられた名前と文字列を持つ属性ノードを表しています。
class func attribute(withName : String, uri: String, stringValue : String) -> Any
Returns an
NSXMLNode
object representing an attribute node with a given qualified name and string.
NSXMLNode
オブジェクトを返します、与えられた修飾名と文字列を持つ属性ノードを表しています。
class func text(withStringValue : String) -> Any
Returns an
NSXMLNode
object representing a text node with specified content.
NSXMLNode
オブジェクトを返します、指定された内容を持つテキストノードを表しています。
class func comment(withStringValue : String) -> Any
Returns an
XMLNode
object representing a comment node containing given text.
XMLNode
オブジェクトを返します、与えられたテキストを含んでいるコメントノードを表しています。
class func namespace(withName : String, stringValue : String) -> Any
Returns an
NSXMLNode
object representing a namespace with a specified name and URI.
NSXMLNode
オブジェクトを返します、指定された名前とURIを持つ名前空間を表しています。
class func dtdNode (withXMLString : String) -> Any?
Returns a
XMLDTDNode
object representing the DTD declaration for an element, attribute, entity, or notation based on a given string.
XMLDTDNode
オブジェクトを返します、与えられた文字列に基づく要素、属性、エンティティ、または表記法に対するDTD宣言を表しています。
class func predefinedNamespace (forPrefix : String) -> XMLNode?
Returns an
NSXMLNode
object representing one of the predefined namespaces with the specified prefix.
NSXMLNode
オブジェクトを返します、指定された接頭辞を持つあらかじめ定義された名前空間の1つを表しています。
class func processingInstruction (withName : String, stringValue : String) -> Any
Returns an
NSXMLNode
object representing a processing instruction with a specified name and value.
NSXMLNode
オブジェクトを返します、指定された名前と値を持つ処理命令を表しています。