るりまサーチ

最速Rubyリファレンスマニュアル検索!
154件ヒット [1-100件を表示] (0.103秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:u[x] > クラス:REXML::Attribute[x]

別のキーワード

  1. erb u
  2. util u
  3. matrix u
  4. encoding koi8_u
  5. _builtin koi8_u

ライブラリ

キーワード

検索結果

<< 1 2 > >>

REXML::Attribute#value -> String (6102.0)

正規化されていない属性値を返します。

正規化されていない属性値を返します。

属性値の正規化については XML の仕様を参考にしてください。

REXML::Attribute#write(output, indent = -1) -> object (3202.0)

output に self の情報を name='value' という形式で書き込みます。

...output に self の情報を name='value' という形式で書き込みます。

output が返ります。

@param output 書き込み先の IO オブジェクト
@param indent インデントレベル、ここでは無視される...

REXML::Attribute#normalized=(value) (3102.0)

正規化された属性値を設定します。

...正規化された属性値を設定します。

通常はライブラリが自動的にこの値を設定するので
ユーザはこれを使う必要はないでしょう。

@param value 正規化された属性値...

REXML::Attribute#==(other) -> bool (3002.0)

属性の名前と値が other と一致する場合に真を返します。

属性の名前と値が other と一致する場合に真を返します。

REXML::Attribute#clone -> REXML::Element (3002.0)

self を複製し返します。

self を複製し返します。

絞り込み条件を変える

REXML::Attribute#element -> REXML::Element (3002.0)

その属性が属する要素を返します。

その属性が属する要素を返します。

REXML::Attribute#element=(element) (3002.0)

self が属する要素を変更します。

self が属する要素を変更します。

@param element 変更先の要素(REXML::Element)

REXML::Attribute#namespace(arg = nil) -> String | nil (3002.0)

属性の名前空間の URI を返します。

... URI を返します。

U
RI が定義されていない場合は nil を返します。

@param arg この値を指定すると、その属性の名前空間でなく、arg という名前空間
URI が返されます。
通常は省略します。

//emlist[][ruby]{
require 'r...
...exml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.example.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").prefix # => "ns"
p e.attributes.get_attribute("r").namespace # => "http://www.example.com/ns"
//}...

REXML::Attribute#node_type -> Symbol (3002.0)

「:attribute」というシンボルを返します。

...「:attribute」というシンボルを返します。...

REXML::Attribute#prefix -> String (3002.0)

属性の名前空間を返します。

...//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new( "elns:myelement" )
e.add_attribute( "nsa:a", "aval" )
e.add_attribute( "b", "bval" )
p e.attributes.get_attribute( "a" ).prefix # -> "nsa"
p e.attributes.get_attribute( "b" ).prefix # -> "elns"
a = REXML::Attribute.new( "x", "y...

絞り込み条件を変える

<< 1 2 > >>