216件ヒット
[1-100件を表示]
(0.071秒)
種類
- インスタンスメソッド (180)
- 特異メソッド (24)
- 定数 (12)
ライブラリ
-
rexml
/ document (216)
キーワード
- == (12)
-
DEFAULT
_ VERSION (12) - clone (12)
- default (12)
- dowrite (12)
- encoding (12)
- encoding= (12)
- new (12)
-
node
_ type (12) - nowrite (12)
-
stand
_ alone? (12) - standalone (12)
- standalone= (12)
- version (12)
- version= (12)
- writeencoding (12)
- writethis (12)
- xmldecl (12)
検索結果
先頭5件
-
REXML
:: XMLDecl :: DEFAULT _ VERSION -> String (9101.0) -
REXML::XMLDecl.new や REXML::XMLDecl.default で の使われるデフォルトのXMLバージョン。
...REXML::XMLDecl.new や REXML::XMLDecl.default で
の使われるデフォルトのXMLバージョン。... -
REXML
:: XMLDecl # clone -> REXML :: XMLDecl (6101.0) -
self を複製します。
...self を複製します。... -
REXML
:: XMLDecl # stand _ alone? -> String | nil (6101.0) -
スタンドアロン文書であるかどうかを "yes" "no" で 返します。
...スタンドアロン文書であるかどうかを "yes" "no" で
返します。
nil(省略)を返す場合もあります。... -
REXML
:: XMLDecl # standalone -> String | nil (6101.0) -
スタンドアロン文書であるかどうかを "yes" "no" で 返します。
...スタンドアロン文書であるかどうかを "yes" "no" で
返します。
nil(省略)を返す場合もあります。... -
REXML
:: XMLDecl # standalone=(value) (6101.0) -
スタンドアロン文書であるかどうかを "yes" "no" で設定します。
...スタンドアロン文書であるかどうかを "yes" "no" で設定します。
この属性を省略したい場合は nil を指定します。
@param value 設定値(文字列)... -
REXML
:: XMLDecl # xmldecl(version , encoding , standalone) -> () (6101.0) -
内容を更新します。
...内容を更新します。
@param version バージョン(文字列)
@param encoding エンコーディング(文字列 or nil)
@param standalone スタンドアロン文章かどうか("yes", "no", nil)... -
REXML
:: XMLDecl . default -> REXML :: XMLDecl (6101.0) -
XML宣言を含まない文章でデフォルトで使うための XMLDecl オブジェクトを生成して返します。
...XML宣言を含まない文章でデフォルトで使うための
XMLDecl オブジェクトを生成して返します。... -
REXML
:: XMLDecl . new(version = REXML :: XMLDecl :: DEFAULT _ VERSION , encoding = nil , standalone = nil) (3201.0) -
新たな XMLDecl オブジェクトを生成して返します。
...新たな XMLDecl オブジェクトを生成して返します。
version 以外は省略可能です。
@param version バージョン(文字列)
@param encoding エンコーディング(文字列 or nil)
@param standalone スタンドアロン文章かどうか("yes", "no", nil)... -
REXML
:: XMLDecl # ==(other) -> bool (3101.0) -
self と other が同じであるならば真を返します。
...self と other が同じであるならば真を返します。
「同じ」とは REXML::XMLDecl#version, REXML::XMLDecl#encoding,
REXML::XMLDecl#standalone が一致していることを意味します。
@param other 比較対象のオブジェクト...