るりまサーチ

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

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. matrix i
  5. ipaddr to_i

検索結果

<< 1 2 3 ... > >>

Gem::Specification.attribute(name) -> () (33301.0)

デフォルト値を指定したアクセサを定義するために使用します。

...ト値を指定したアクセサを定義するために使用します。

以下の副作用があります。

* クラス変数 @@attributes, @@default_value を変更します。
* 通常の属性書き込みメソッドを定義します。
* デフォルト値を持つ属性読み取り...

REXML::Element#attribute(name, namespace = nil) -> REXML::Attribute | nil (30674.0)

name で指定される属性を返します。

...name で指定される属性を返します。

属性は REXML::Attribute オブジェクトの形で返します。

name は "foo:bar" のように prefix を指定することができます。

namespace で名前空間の URI を指定することで、その名前空間内で
name という...
...nil を返します。

@param name 属性名(文字列)
@param namespace 名前空間のURI(文字列)
//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='...
...&lt;'/>
</root>
EOS
a
= doc.get_elements("/root/a").first
a
.attribute("att") # => att='&lt;'
a
.attribute("att", "http://example.org/bar") # => bar:att='2'
a
.attribute("bar:att") # => bar:att='2'
a
.attribute("baz") # => nil
//}...

REXML::Attributes#get_attribute_ns(namespace, name) -> REXML::Attribute | nil (27668.0)

namespace と name で特定される属性を返します。

...namespace と name で特定される属性を返します。

namespace で名前空間を、 name で prefix を含まない属性名を
指定します。

指定された属性が存在しない場合は nil を返します。

XML プロセッサが prefix を置き換えてしまった場合...
...@param namespace 名前空間(URI, 文字列)
@param name 属性名(文字列)

//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='&lt;'/>
</root>
EOS
a
=...
...root/a").first

a
.attributes.get_attribute_ns("", "att") # => att='&lt;'
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::Attributes#get_attribute(name) -> Attribute | nil (27644.0)

name という名前の属性を取得します。

...name という名前の属性を取得します。

name という名前を持つ属性がない場合は nil を返します。

@param name 属性名(文字列)
@see REXML::Attributes#[]

//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='&lt;'/>
</root>
EOS
a
= doc.get_elements("/root/a").first

a
.attributes.get_attribute("att") # => att='&lt;'
a
.attributes.get_attribute("foo:att") # => foo:att='1'
//}...

REXML::Attributes#each_attribute {|attribute| ... } -> () (27538.0)

各属性に対しブロックを呼び出します。

...:Attribute オブジェクトで渡されます。

//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='&lt;'/>
</root>
EOS
a
= doc.get_elements("/root/a").fi...
...rst

a
.attributes.each_attribute do |attr|
p [attr.namespace, attr.name, attr.value]
end
# => ["http://example.org/foo", "att", "1"]
# => ["http://example.org/bar", "att", "2"]
# => ["", "att", "<"]
//}...

絞り込み条件を変える

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

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

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

@see Object#dup...

Gem::Specification.array_attribute(name) -> () (21323.0)

Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。

...Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。

@param name 属性の名前を指定します。

@see Gem::Specification.attribute...

Gem::Specification.attribute_alias_singular(singular, plural) -> () (21307.0)

既に存在する複数形の属性の単数形バージョンを定義します。

...うに定義すると
attribute
_alias_singular :require_path, :require_paths
# こう書くかわりに
s.require_paths = ['mylib']
# こう書くことができます。
s.require_path = 'mylib'

@param singular 属性名の単数形を指定します。

@param plural 属性名の複数...

Gem::Specification.required_attribute(name, default = nil) -> () (21307.0)

必須の属性を作成します。

...必須の属性を作成します。

@param name 属性名を指定します。

@param default デフォルト値を指定します。

@see Gem::Specification.attribute...

Gem::Specification.attribute_defaults -> Array (21301.0)

@todo

...@todo

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

絞り込み条件を変える

<< 1 2 3 ... > >>