Class: Slaw::Parse::Blocklists::NumberingFormat
- Inherits:
-
Object
- Object
- Slaw::Parse::Blocklists::NumberingFormat
- Includes:
- Comparable
- Defined in:
- lib/slaw/parse/blocklists.rb
Constant Summary collapse
- @@a =
NumberingFormat.new(:a, 0)
- @@A =
NumberingFormat.new(:a, 1)
- @@i =
NumberingFormat.new(:i, 2)
- @@I =
NumberingFormat.new(:I, 3)
- @@aa =
NumberingFormat.new(:aa, 4)
- @@AA =
NumberingFormat.new(:AA, 5)
- @@unknown =
NumberingFormat.new(:unknown, 9)
Instance Attribute Summary collapse
-
#ordinal ⇒ Object
Returns the value of attribute ordinal.
-
#type ⇒ Object
Returns the value of attribute type.
Class Method Summary collapse
Instance Method Summary collapse
- #<=>(other) ⇒ Object
- #eql?(other) ⇒ Boolean
-
#initialize(type, ordinal) ⇒ NumberingFormat
constructor
A new instance of NumberingFormat.
- #to_s ⇒ Object
Constructor Details
#initialize(type, ordinal) ⇒ NumberingFormat
Returns a new instance of NumberingFormat.
192 193 194 195 |
# File 'lib/slaw/parse/blocklists.rb', line 192 def initialize(type, ordinal) @type = type @ordinal = ordinal end |
Instance Attribute Details
#ordinal ⇒ Object
Returns the value of attribute ordinal.
190 191 192 |
# File 'lib/slaw/parse/blocklists.rb', line 190 def ordinal @ordinal end |
#type ⇒ Object
Returns the value of attribute type.
190 191 192 |
# File 'lib/slaw/parse/blocklists.rb', line 190 def type @type end |
Class Method Details
.A ⇒ Object
218 |
# File 'lib/slaw/parse/blocklists.rb', line 218 def self.A; @@A; end |
.a ⇒ Object
217 |
# File 'lib/slaw/parse/blocklists.rb', line 217 def self.a; @@a; end |
.aa ⇒ Object
221 |
# File 'lib/slaw/parse/blocklists.rb', line 221 def self.aa; @@aa; end |
.AA ⇒ Object
222 |
# File 'lib/slaw/parse/blocklists.rb', line 222 def self.AA; @@AA; end |
.I ⇒ Object
220 |
# File 'lib/slaw/parse/blocklists.rb', line 220 def self.I; @@I; end |
.i ⇒ Object
219 |
# File 'lib/slaw/parse/blocklists.rb', line 219 def self.i; @@i; end |
.unknown ⇒ Object
223 |
# File 'lib/slaw/parse/blocklists.rb', line 223 def self.unknown; @@unknown; end |
Instance Method Details
#<=>(other) ⇒ Object
201 202 203 |
# File 'lib/slaw/parse/blocklists.rb', line 201 def <=>(other) self.ordinal <=> other.ordinal end |
#eql?(other) ⇒ Boolean
197 198 199 |
# File 'lib/slaw/parse/blocklists.rb', line 197 def eql?(other) self.ordinal == other.ordinal end |
#to_s ⇒ Object
205 206 207 |
# File 'lib/slaw/parse/blocklists.rb', line 205 def to_s @type.to_s end |