要約
DTD の属性リスト宣言を表すクラスです。
目次
継承しているメソッド
- Enumerableから継承しているメソッド
-
- all?
- any?
- chain
- chunk
- chunk_while
- collect
- collect_concat
- count
- cycle
- detect
- drop
- drop_while
- each_cons
- each_entry
- each_slice
- each_with_index
- each_with_object
- entries
- filter
- filter_map
- find
- find_all
- find_index
- first
- flat_map
- grep
- grep_v
- group_by
- inject
- lazy
- map
- max
- max_by
- member?
- min
- min_by
- minmax
- minmax_by
- none?
- one?
- partition
- reduce
- reject
- reverse_each
- select
- slice_after
- slice_before
- slice_when
- sort
- sort_by
- sum
- take
- take_while
- tally
- to_a
- to_h
- uniq
- zip
- REXML::Childから継承しているメソッド
- REXML::Nodeから継承しているメソッド
特異メソッド
new(source) -> REXML::AttlistDecl
[permalink][rdoc][edit]-
このメソッドは内部用なので使わないでください。
インスタンスメソッド
self[key] -> String | nil
[permalink][rdoc][edit]-
key という属性名のデフォルト値を返します。
key という名前の属性が存在しない、もしくはデフォルト値を持たない場合は nil を返します。
each {|name, value| ... } -> ()
[permalink][rdoc][edit]-
それぞれの属性名、デフォルト値を引数としてブロックを順に呼び出します。
デフォルト値を持たない属性に関しては nil が渡されます。
element_name -> String
[permalink][rdoc][edit]-
属性を定義しているエレメントの名前を返します。
include?(key) -> bool
[permalink][rdoc][edit]-
key が属性名であるならば真を返します。
- [PARAM] key:
- 属性名であるかどうか判定する文字列
node_type -> Symbol
[permalink][rdoc][edit]-
Symbol :attlistdecl を返します。
write(out, indent = -1) -> ()
[permalink][rdoc][edit]-
self を out に出力します。
- [PARAM] out:
- 出力先の IO オブジェクト
- [PARAM] indent:
- インデント数(無視されます)