るりまサーチ

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

別のキーワード

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

ライブラリ

キーワード

検索結果

<< 1 2 > >>

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

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

...][ruby]{
r
equire '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" )
p a.pre...
...fix # -> ""
//}...

REXML::Attribute#remove -> () (9201.0)

self を所属する要素から取り除きます。

self を所属する要素から取り除きます。

REXML::Attribute#to_string -> String (6319.0)

"name='value'" という形式の文字列を返します。

..."name='value'" という形式の文字列を返します。

//emlist[][ruby]{
r
equire 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").to_string # => "ns:r='rval'"
//}...

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

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

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

output が返ります。

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

REXML::Attribute.new(attribute, value, parent = nil) -> REXML::Attribute (3301.0)

新たな属性オブジェクトを生成します。

...2種類の初期化が可能です。
REXML::Attribute
オブジェクトを渡した場合は、
属性名とその値がそれから複製されます。
parent で新たに作られる属性オブジェクトが属する
要素が指定できます。
parent を省略した場合は複製元と...
...す。
parent で新たに作られる属性オブジェクトが属する
要素が指定できます。
parent を省略した場合は nil が設定されます。

通常はこのメソッドは直接は使わず、REXML::Element#add_attribute などを
使うでしょう。

@param attribute_to...
..._clone 複製元の REXML::Attribute オブジェクト
@param attribute 属性名
@param value 属性の値
@param parent 生成される属性が所属する要素(REXML::Element)...

絞り込み条件を変える

REXML::Attribute.new(attribute_to_clone, parent = nil) -> REXML::Attribute (3301.0)

新たな属性オブジェクトを生成します。

...2種類の初期化が可能です。
REXML::Attribute
オブジェクトを渡した場合は、
属性名とその値がそれから複製されます。
parent で新たに作られる属性オブジェクトが属する
要素が指定できます。
parent を省略した場合は複製元と...
...す。
parent で新たに作られる属性オブジェクトが属する
要素が指定できます。
parent を省略した場合は nil が設定されます。

通常はこのメソッドは直接は使わず、REXML::Element#add_attribute などを
使うでしょう。

@param attribute_to...
..._clone 複製元の REXML::Attribute オブジェクト
@param attribute 属性名
@param value 属性の値
@param parent 生成される属性が所属する要素(REXML::Element)...

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

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

...URI を返します。

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

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

//emlist[][ruby]{
r
equire 'rexm...
...l/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#xpath -> String (3207.0)

その属性を指定する xpath 文字列を返します。

...その属性を指定する xpath 文字列を返します。

例えば "/foo/bar/@ns:r" という文字列を返します。...

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

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

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

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

self を複製し返します。

self を複製し返します。

絞り込み条件を変える

<< 1 2 > >>