Type Method 型メソッド

comment(withStringValue:)

Returns an XMLNode object representing a comment node containing given text. XMLNodeオブジェクトを返します、与えられたテキストを含んでいるコメントノードを表しています。

Declaration 宣言

class func comment(withStringValue stringValue: String) -> Any

Parameters パラメータ

stringValue

A string specifying the text of the comment. You may specify nil or an empty string (see Return Value). コメントのテキストを指定している文字列。あなたはnilまたは空文字列を指定するかもしれません(戻り値を見てください)。

Return Value 戻り値

An XMLNode object representing an comment node (XMLNode.Kind.comment) containing the text stringValue or nil if the object couldn't be created. If stringValue is nil or an empty string, a content-less comment node is returned (<!--->). コメントノードを表しているXMLNodeオブジェクト(XMLNode.Kind.comment)、それはテキストstringValueを含んでいます、またはnil、もしオブジェクトが作成できなかったならば。stringValuenilまたは空文字列ならば、内容無しコメントノードが返されます(<!--->)。

See Also 参照

Creating and Initializing Node Objects ノードオブジェクトの作成と初期化