780件ヒット
[101-200件を表示]
(0.047秒)
クラス
-
REXML
:: AttlistDecl (24) -
REXML
:: Attribute (72) -
REXML
:: Attributes (36) -
REXML
:: CData (24) -
REXML
:: Comment (60) -
REXML
:: Declaration (12) -
REXML
:: DocType (84) -
REXML
:: Document (60) -
REXML
:: Element (72) -
REXML
:: Entity (108) -
REXML
:: ExternalEntity (12) -
REXML
:: Instruction (24) -
REXML
:: NotationDecl (48) -
REXML
:: Text (24) -
REXML
:: XMLDecl (48)
モジュール
-
REXML
:: Namespace (60) -
REXML
:: Node (12)
キーワード
- <=> (12)
- == (12)
- [] (24)
-
add
_ element (12) -
attribute
_ of (12) - content (12)
-
element
_ name (12) - encoding (24)
- entities (12)
- entity (12)
- external (12)
-
external
_ id (12) -
local
_ name (12) - name (60)
- namespace (24)
- namespaces (24)
- ndata (12)
- normalized (12)
- prefix (24)
- prefixes (24)
- pubid (12)
- public (24)
- ref (12)
-
stand
_ alone? (24) - standalone (12)
- string= (12)
- system (24)
- target (12)
- text (12)
-
to
_ s (108) -
to
_ string (12) - unnormalized (12)
- value (48)
- version (24)
- xpath (24)
検索結果
先頭5件
-
REXML
:: Document # expanded _ name -> String (105.0) -
""(空文字列)を返します。
""(空文字列)を返します。
XMLの仕様上、このオブジェクトはexpanded name名前を持ちえません。 -
REXML
:: Document # name -> String (105.0) -
""(空文字列)を返します。
""(空文字列)を返します。
XMLの仕様上、このオブジェクトはexpanded name名前を持ちえません。 -
REXML
:: Namespace # local _ name -> String (105.0) -
prefix を含まない「ローカルな」名前を返します。
prefix を含まない「ローカルな」名前を返します。 -
REXML
:: Namespace # name -> String (105.0) -
prefix を含まない「ローカルな」名前を返します。
prefix を含まない「ローカルな」名前を返します。 -
REXML
:: XMLDecl # stand _ alone? -> String | nil (105.0) -
スタンドアロン文書であるかどうかを "yes" "no" で 返します。
スタンドアロン文書であるかどうかを "yes" "no" で
返します。
nil(省略)を返す場合もあります。 -
REXML
:: XMLDecl # standalone -> String | nil (105.0) -
スタンドアロン文書であるかどうかを "yes" "no" で 返します。
スタンドアロン文書であるかどうかを "yes" "no" で
返します。
nil(省略)を返す場合もあります。 -
REXML
:: AttlistDecl # [](key) -> String | nil (104.0) -
key という属性名のデフォルト値を返します。
key という属性名のデフォルト値を返します。
key という名前の属性が存在しない、もしくは
デフォルト値を持たない場合は nil を返します。 -
REXML
:: AttlistDecl # element _ name -> String (104.0) -
属性を定義しているエレメントの名前を返します。
属性を定義しているエレメントの名前を返します。 -
REXML
:: Attribute # namespace(arg = nil) -> String | nil (104.0) -
属性の名前空間の URI を返します。
...間でなく、arg という名前空間
の URI が返されます。
通常は省略します。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.example.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attrib...