Instance Method インスタンスメソッド

resolveNamespace(forName:)

Returns the namespace node with the prefix matching the given qualified name. 与えられた修飾名と一致する接頭辞を持つ名前空間ノードを返します。

Declaration 宣言

func resolveNamespace(forName name: String) -> XMLNode?

Parameters パラメータ

name

A string that is the qualified name for a namespace (a qualified name is prefix plus local name). ある文字列、それはある名前空間に対する修飾名です(修飾名は接頭辞にローカル名を足したものです)。

Return Value 戻り値

An XMLNode object of kind XMLNode.Kind.namespace or nil if there is no matching namespace node. 種類XMLNode.Kind.namespaceXMLNodeオブジェクト、またはnil、もし合致する名前空間ノードがないならば。

Discussion 議論

The method looks in the entire namespace chain for the prefix. メソッドは、接頭辞に対する名前空間連鎖全体を捜します。

See Also 参照

Handling Namespaces 名前空間を取り扱う