るりまサーチ

最速Rubyリファレンスマニュアル検索!
1020件ヒット [1-100件を表示] (0.177秒)
トップページ > クエリ:e[x] > クエリ:Attributes[x]

別のキーワード

  1. open3 popen2e
  2. socket af_e164
  3. matrix det_e
  4. matrix rank_e
  5. open3 capture2e

検索結果

<< 1 2 3 ... > >>

REXML::Attributes (24012.0)

属性の集合を表すクラスです。

...属性の集合を表すクラスです。

REXML::Element#attributes はこのクラスのオブジェクトを返します。
各属性には REXML::Attributes#[] でアクセスします。...

REXML::Element#attributes -> REXML::Attributes (12402.0)

要素が保持している属性の集合を返します。

要素が保持している属性の集合を返します。

REXML::Element#add_attributes(attrs) -> () (12273.0)

要素の属性を複数追加します。 同じ名前の属性がすでにある場合はその属性を新しい 属性で置き換えます。

...{ "name1" => "value1", "name2" => "value2", ... }
という形で、配列の場合は
[ ["name1", "value1"], ["name2", "value2"], ... }
という形で追加/更新する属性を指定します。

@param attrs 追加する属性の属性名と属性値の対の集合(Array or Hash)

//emlist[]...
...[ruby]{
require 'rexml/document'
e
= REXML::Element.new("e")
e
.add_attributes({"a" => "b", "c" => "d"})
e
# => <e a='b' c='d'/>
e
= REXML::Element.new("e")
e
.add_attributes([["a", "b"], ["c", "d"]])
e
# => <e a='b' c='d'/>
//}...

REXML::DocType#attributes_of(element) -> [REXML::Attribute] (12219.0)

DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている 属性の名前とデフォルト値を REXML::Attribute の配列で返します。

...宣言で、 element という名前の要素に対し宣言されている
属性の名前とデフォルト値を REXML::Attribute の配列で返します。

名前とデフォルト値のペアは、各 Attribute オブジェクトの
REXML::Attribute#name
REXML::Attribute#value で表現...
...//emlist[][ruby]{
require 'rexml/document'

doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book (comment)>
<!ELEMENT comment (#PCDATA)>
<!ATTLIST book
author CDATA #REQUIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">
]>
E
OS

p...
...doctype.attributes_of("book")
# => [author='', title='', publisher='foobar publisher']
p doctype.attributes_of("book")[0].name # => "author"
p doctype.attributes_of("book")[0].value # => ""
//}...

Gem::Specification.array_attributes -> Array (12217.0)

@@array_attributes の複製を返します。

...@@array_attributes の複製を返します。

@see Object#dup...

絞り込み条件を変える

REXML::Attributes#namespaces -> { String => String } (12212.0)

self の中で宣言されている名前空間の集合を返します。

...self の中で宣言されている名前空間の集合を返します。

返り値は名前空間の prefix をキーとし、URI を値とする
Hash を返します。

//emlist[][ruby]{
require 'rexml/document'

doc = REXML::Document.new(<<EOS)
<root xmlns:foo="http://example.org/foo"
xm...
...lns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='&lt;'/>
</root>
E
OS
a = doc.get_elements("/root/a").first

p doc.root.attributes.namespaces
# => {"foo"=>"http://example.org/foo", "bar"=>"http://example.org/bar"}
p a.attributes.namespaces
# => {}
//}...

Gem::Specification.attributes(*args) -> () (12201.0)

複数の属性を一度に作成するために使用します。

複数の属性を一度に作成するために使用します。

各属性のデフォルト値は nil になります。

@param args 属性名を一つ以上指定します。

Gem::Specification.required_attributes -> Array (12201.0)

必須属性のリストを返します。

必須属性のリストを返します。

OpenSSL::X509::Request#attributes -> [OpenSSL::X509::Attribute] (12201.0)

CSR が保持している attribute を OpenSSL::X509::Attribute の配列で返します。

...ttribute を OpenSSL::X509::Attribute
の配列で返します。

attribute とは X.509 証明書署名要求 に含まれる申請者に関する
追加的な情報です。必須ではありません。X.509v3 拡張領域を
CSR に含めるときは "reqExt" という oid の attribute を追...
...
します。

@see OpenSSL::X509::Request#attribute=,
OpenSSL::X509::Request#add_attribute...
<< 1 2 3 ... > >>