1536件ヒット
[201-300件を表示]
(0.146秒)
ライブラリ
- json (12)
- psych (240)
-
rdoc
/ code _ object (108) -
rdoc
/ markdown (12) -
rdoc
/ rdoc (12) -
rdoc
/ text (12) -
rexml
/ document (1044) -
rexml
/ parsers / sax2parser (60) -
rexml
/ sax2listener (24) - win32ole (12)
クラス
-
JSON
:: State (12) - Object (24)
-
Psych
:: Handler (24) -
Psych
:: Nodes :: Document (108) -
Psych
:: Nodes :: Node (24) -
Psych
:: Stream (36) -
RDoc
:: CodeObject (108) -
RDoc
:: Markdown (12) -
RDoc
:: RDoc (12) -
REXML
:: Attribute (36) -
REXML
:: Attributes (156) -
REXML
:: CData (24) -
REXML
:: Child (36) -
REXML
:: DocType (120) -
REXML
:: Document (168) -
REXML
:: Element (288) -
REXML
:: Elements (108) -
REXML
:: Instruction (24) -
REXML
:: Parsers :: SAX2Parser (60) -
REXML
:: Text (48) -
REXML
:: XMLDecl (36) -
WIN32OLE
_ EVENT (12)
モジュール
- Kernel (24)
-
RDoc
:: Text (12) -
REXML
:: SAX2Listener (24)
キーワード
- << (24)
- [] (24)
- []= (24)
- add (24)
-
add
_ attribute (24) -
add
_ attributes (12) -
add
_ element (12) -
add
_ namespace (24) - attribute (12)
-
attribute
_ of (12) -
attributes
_ of (12) - clone (12)
- content (12)
- context (12)
- delete (24)
-
delete
_ all (24) -
delete
_ attribute (12) -
delete
_ element (12) -
delete
_ namespace (12) - doctype (24)
-
document
_ children (12) -
document
_ children= (12) -
document
_ self (12) -
document
_ self= (12) - documented? (12)
- dowrite (12)
- each (24)
-
each
_ attribute (12) -
each
_ element _ with _ attribute (12) -
each
_ element _ with _ text (12) - encoding (12)
-
end
_ document (24) - entities (12)
- entity (12)
-
external
_ id (12) - finish (12)
- generate (12)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) -
get
_ text (12) - handler= (12)
-
has
_ elements? (12) - implicit (12)
- implicit= (12)
-
implicit
_ end (12) -
implicit
_ end= (12) - length (12)
- listen (60)
- name (24)
- namespace (24)
- namespaces (24)
-
next
_ element (12) -
next
_ sibling= (12) -
node
_ type (12) - nowrite (12)
- parse (24)
- prefix (12)
- prefixes (24)
-
previous
_ sibling= (12) -
psych
_ to _ yaml (12) -
psych
_ y (12) - public (12)
-
remove
_ classes _ and _ modules (12) -
remove
_ methods _ etc (12) - root (36)
-
root
_ node (12) - size (24)
-
stand
_ alone? (12) - start (24)
-
start
_ doc (12) -
start
_ document (24) -
stop
_ doc (12) - system (12)
-
tag
_ directives (12) -
tag
_ directives= (12) - target (12)
- text (12)
- text= (12)
-
to
_ a (24) -
to
_ s (24) -
to
_ string (12) -
to
_ yaml (24) - value (24)
- value= (12)
- version (24)
- version= (12)
- write (36)
- writethis (12)
-
xml
_ decl (12) - xpath (12)
- y (12)
- yaml (12)
検索結果
先頭5件
-
REXML
:: Document # doctype -> REXML :: DocType | nil (9201.0) -
文書の DTD を返します。
...文書の DTD を返します。
文書が DTD を持たない場合は nil を返します。... -
REXML
:: Document # root -> REXML :: Element | nil (9201.0) -
文書のルート要素を返します。
文書のルート要素を返します。
文書がルート要素を持たない場合は nil を返します。 -
REXML
:: Document # node _ type -> Symbol (9117.0) -
シンボル :document を返します。
...シンボル :document を返します。... -
Psych
:: Nodes :: Document # implicit -> bool (9113.0) -
ドキュメントが implicit に始まっているかどうかを返します。
...ドキュメントが implicit に始まっているかどうかを返します。
@see Psych::Nodes::Document#implicit=,
Psych::Nodes::Document.new... -
Psych
:: Nodes :: Document # implicit=(bool) (9113.0) -
ドキュメントが implicit に始まっているかどうかを設定します。
...ドキュメントが implicit に始まっているかどうかを設定します。
@param bool ドキュメントが implicit に始まっているかどうかの設定値
@see Psych::Nodes::Document#implicit,
Psych::Nodes::Document.new... -
Psych
:: Nodes :: Document # tag _ directives -> [[String , String]] (9113.0) -
tag directive の配列を返します。
...tag directive の配列を返します。
@see Psych::Nodes::Document#tag_directives=,
Psych::Nodes::Document.new... -
REXML
:: Attributes # get _ attribute(name) -> Attribute | nil (9113.0) -
name という名前の属性を取得します。
...ttributes#[]
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attributes.get_attribute("att......") # => att='<'
a.attributes.get_attribute("foo:att") # => foo:att='1'
//}... -
REXML
:: Attributes # get _ attribute _ ns(namespace , name) -> REXML :: Attribute | nil (9113.0) -
namespace と name で特定される属性を返します。
...ist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attributes.get_attribute_ns("", "att") # => att='......<'
a.attributes.get_attribute_ns("http://example.org/foo", "att") # => foo:att='1'
a.attributes.get_attribute_ns("http://example.org/baz", "att") # => nil
a.attributes.get_attribute_ns("http://example.org/foo", "attt") # => nil
//}... -
REXML
:: Document # stand _ alone? -> String (9113.0) -
XML 宣言の standalone の値を文字列で返します。
...XML 宣言の standalone の値を文字列で返します。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<e />
EOS
doc.stand_alone? # => "yes"
//}...