るりまサーチ

最速Rubyリファレンスマニュアル検索!
66件ヒット [1-66件を表示] (0.091秒)
トップページ > クエリ:-[x] > クラス:REXML::Child[x] > 種類:インスタンスメソッド[x]

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

ライブラリ

キーワード

検索結果

REXML::Child#document -> REXML::Document | nil (102.0)

そのノードが属する document (REXML::Document) を返します。

そのノードが属する document (REXML::Document) を返します。

属する document が存在しない場合は nil を返します。

REXML::Child#next_sibling -> REXML::Node (102.0)

次の隣接ノードを返します。

...次の隣接ノードを返します。

REXML::Node#next_sibling_node の別名です。

@see REXML::Child#next_sibling=...

REXML::Child#parent -> REXML::Parent|nil (102.0)

親ノードを返します。

...親ノードを返します。

ルートノードの場合は nil を返します。

@see REXML::Child#parent=...

REXML::Child#previous_sibling -> REXML::Node (102.0)

前の隣接ノードを返します。

...前の隣接ノードを返します。

REXML::Node#previous_sibling_node の別名です。

@see REXML::Child#previous_sibling=...

REXML::Child#remove -> self (102.0)

親ノードの子ノード列から self を取り除きます。

親ノードの子ノード列から self を取り除きます。

絞り込み条件を変える

REXML::Child#replace_with(child) -> self (102.0)

親ノードの子ノード列上において、 self を child に置き換えます。

親ノードの子ノード列上において、 self を child に置き換えます。

@param child 置き換え後のノード
@see REXML::Parent#replace_child