696件ヒット
[1-100件を表示]
(0.126秒)
別のキーワード
種類
- インスタンスメソッド (576)
- 特異メソッド (72)
- クラス (36)
- モジュール (12)
ライブラリ
-
rexml
/ document (696)
クラス
-
REXML
:: AttlistDecl (24) -
REXML
:: Attribute (36) -
REXML
:: Attributes (120) -
REXML
:: DocType (84) -
REXML
:: Document (24) -
REXML
:: Element (144) -
REXML
:: Elements (12) -
REXML
:: Entity (48) -
REXML
:: NotationDecl (24) -
REXML
:: XPath (36)
モジュール
-
REXML
:: Namespace (96)
キーワード
- << (12)
- Element (12)
- Entity (12)
- Namespace (12)
- NotationDecl (12)
- [] (24)
- []= (12)
- add (12)
-
add
_ attributes (12) -
add
_ namespace (24) - attribute (12)
-
attributes
_ of (12) - clone (12)
-
delete
_ all (12) -
delete
_ namespace (12) - each (36)
-
each
_ attribute (12) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) -
element
_ name (12) - entity (12)
-
external
_ id (12) - first (12)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) -
has
_ name? (12) -
local
_ name (12) - match (12)
- name= (12)
- namespace (24)
- namespaces (36)
- ndata (12)
- new (36)
- notation (12)
- prefix (12)
- prefix= (12)
- root (12)
-
root
_ node (12) -
to
_ string (12) - whitespace (12)
- write (12)
検索結果
先頭5件
-
REXML
:: Namespace # name -> String (29102.0) -
prefix を含まない「ローカルな」名前を返します。
prefix を含まない「ローカルな」名前を返します。 -
REXML
:: Document # name -> String (26108.0) -
""(空文字列)を返します。
...""(空文字列)を返します。
XMLの仕様上、このオブジェクトはexpanded name名前を持ちえません。... -
REXML
:: DocType # name -> String (26107.0) -
ルート要素名を返します。
...ルート要素名を返します。
//emlist[][ruby]{
document = REXML::Document.new(<<EOS)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
EOS
doctype = document.doctype
p doctype.name # => "html"
//}... -
REXML
:: Entity # name -> String (26101.0) -
実体の名前を返します。
実体の名前を返します。 -
REXML
:: NotationDecl # name -> String (26101.0) -
記法宣言の名前を返します。
記法宣言の名前を返します。 -
REXML
:: Namespace # name=(name) (17208.0) -
名前を設定します。
...名前を設定します。
prefix を持つ名前も持たない名前も受け付けます。
@param name 名前(文字列)... -
REXML
:: Namespace # expanded _ name -> String (17123.0) -
REXML::Namespace#name= で設定された名前を返します。
...REXML::Namespace#name= で設定された名前を返します。
name= で指定した名前が prefix を含んでいれば
prefix を含む名前を返し、そうでなければ
prefix を含まない名前を返します。
@see REXML::Namespace#prefix... -
REXML
:: Namespace # has _ name?(other , ns = nil) -> bool (17113.0) -
self が other と ns で指定した名前を持っているならば真を返します。
...other が ":" を含んでいる(つまり prefix を含んでいる)場合は
REXML::Namespace#fully_expanded_name と other を比較します。
どちらでもない場合は other と REXML::Namespace#name を直接
比較します。
@param other 比較する名前(文字列)
@param ns 比... -
REXML
:: Namespace # local _ name -> String (17102.0) -
prefix を含まない「ローカルな」名前を返します。
prefix を含まない「ローカルな」名前を返します。