るりまサーチ

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

別のキーワード

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

検索結果

<< 1 2 3 ... > >>

URI::LDAP#attributes -> String (27401.0)

自身の Attribute を文字列で返します。

...自身の Attribute を文字列で返します。...

WEBrick::HTTPRequest#attributes -> Hash (27301.0)

@todo ???

@todo ???

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

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

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

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

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

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

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

@see OpenSSL::X509::Request#attribute=,
OpenSSL::X509::Request#add_attribute...

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

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

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

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

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

絞り込み条件を変える

RDoc::Context#attributes -> [RDoc::Attr] (24301.0)

追加された RDoc::Attr の配列を返します。

...追加された RDoc::Attr の配列を返します。...

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

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

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

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

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

...デフォルト値を REXML::Attribute の配列で返します。

名前とデフォルト値のペアは、各 Attribute オブジェクトの
R
EXML::Attribute#name と
R
EXML::Attribute#value で表現されます。

//emlist[][ruby]{
r
equire 'rexml/document'

doctype = REXML::Document.new(<<EOS...
...k
author CDATA #REQUIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">
]>
EOS

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

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

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

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

@see Object#dup...

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

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

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

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

//emlist[][ruby]{
r
equire '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'/>
//...

絞り込み条件を変える

<< 1 2 3 ... > >>