396件ヒット
[1-100件を表示]
(0.018秒)
種類
- インスタンスメソッド (336)
- 特異メソッド (48)
- モジュール (12)
クラス
-
REXML
:: AttlistDecl (12) -
REXML
:: Attribute (12) -
REXML
:: Child (24) -
REXML
:: Comment (12) -
REXML
:: DocType (12) -
REXML
:: Document (24) -
REXML
:: Element (60) -
REXML
:: Elements (24) -
REXML
:: Formatters :: Default (12) -
REXML
:: Instruction (12) -
REXML
:: Parent (48) -
REXML
:: Text (12) -
REXML
:: XMLDecl (12) -
REXML
:: XPath (24)
モジュール
-
REXML
:: Node (84)
キーワード
- Node (12)
- []= (36)
- context (12)
- context= (12)
- each (12)
-
each
_ recursive (12) -
find
_ first _ recursive (12) - first (12)
-
index
_ in _ parent (12) - match (12)
- new (24)
-
next
_ sibling (12) -
next
_ sibling _ node (12) -
node
_ type (108) - parent? (24)
-
previous
_ sibling (12) -
previous
_ sibling _ node (12) -
root
_ node (12) -
to
_ a (12) -
to
_ s (12) - write (12)
検索結果
先頭5件
-
REXML
:: Node # next _ sibling _ node -> REXML :: Node | nil (9204.0) -
次の兄弟ノードを返します。
次の兄弟ノードを返します。
次の兄弟ノードが存在しない場合(ノードがルートである場合や、
最後のノードである場合)は nil を返します。 -
REXML
:: Node # previous _ sibling _ node -> REXML :: Node | nil (9204.0) -
前の兄弟ノードを返します。
前の兄弟ノードを返します。
前の兄弟ノードが存在しない場合(ノードがルートである場合や、
最初のノードである場合)は nil を返します。 -
REXML
:: Element # root _ node -> REXML :: Document | REXML :: Node (6216.0) -
self が属する文書のルートノードを返します。
...されます。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root>
<children>
<grandchildren />
</children>
</root>
EOS
children = doc.get_elements("/root/children").first
children.name # => "children"
children.root_node == doc # => true
grandchildren = doc.get_el......ements("/root/children/grandchildren").first
grandchildren.name # => "grandchildren"
grandchildren.root_node == doc # => true
//}... -
REXML
:: AttlistDecl # node _ type -> Symbol (6103.0) -
Symbol :attlistdecl を返します。
Symbol :attlistdecl を返します。 -
REXML
:: Attribute # node _ type -> Symbol (6103.0) -
「:attribute」というシンボルを返します。
「:attribute」というシンボルを返します。 -
REXML
:: Comment # node _ type -> Symbol (6103.0) -
シンボル :comment を返します。
シンボル :comment を返します。 -
REXML
:: DocType # node _ type -> Symbol (6103.0) -
Symbol :doctype を返します。
Symbol :doctype を返します。 -
REXML
:: Document # node _ type -> Symbol (6103.0) -
シンボル :document を返します。
シンボル :document を返します。 -
REXML
:: Element # node _ type -> Symbol (6103.0) -
シンボル :element を返します。
シンボル :element を返します。