Class: PDF::Reader::Reference
- Inherits:
-
Object
- Object
- PDF::Reader::Reference
- Defined in:
- lib/pdf/reader/reference.rb
Overview
An internal PDF::Reader class that represents an indirect reference to a PDF Object
Instance Attribute Summary collapse
-
#gen ⇒ Object
readonly
Returns the value of attribute gen.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
Instance Method Summary collapse
-
#==(obj) ⇒ Object
(also: #eql?)
returns true if the provided object points to the same PDF Object as the current object.
-
#hash ⇒ Object
returns a hash based on the PDF::Reference this object points to.
-
#initialize(id, gen) ⇒ Reference
constructor
Create a new Reference to an object with the specified id and revision number.
-
#to_a ⇒ Object
returns the current Reference object in an array with a single element.
-
#to_i ⇒ Object
returns the ID of this reference.
Constructor Details
#initialize(id, gen) ⇒ Reference
Create a new Reference to an object with the specified id and revision number
38 39 40 |
# File 'lib/pdf/reader/reference.rb', line 38 def initialize(id, gen) @id, @gen = id, gen end |
Instance Attribute Details
#gen ⇒ Object (readonly)
Returns the value of attribute gen.
35 36 37 |
# File 'lib/pdf/reader/reference.rb', line 35 def gen @gen end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
34 35 36 |
# File 'lib/pdf/reader/reference.rb', line 34 def id @id end |
Instance Method Details
#==(obj) ⇒ Object Also known as: eql?
returns true if the provided object points to the same PDF Object as the current object
54 55 56 57 58 |
# File 'lib/pdf/reader/reference.rb', line 54 def ==(obj) return false unless obj.kind_of?(PDF::Reader::Reference) self.hash == obj.hash end |
#hash ⇒ Object
returns a hash based on the PDF::Reference this object points to. Two different Reference objects that point to the same PDF Object will return an identical hash
64 65 66 |
# File 'lib/pdf/reader/reference.rb', line 64 def hash "#{self.id}:#{self.gen}".hash end |
#to_a ⇒ Object
returns the current Reference object in an array with a single element
43 44 45 |
# File 'lib/pdf/reader/reference.rb', line 43 def to_a [self] end |
#to_i ⇒ Object
returns the ID of this reference. Use with caution, ignores the generation id
48 49 50 |
# File 'lib/pdf/reader/reference.rb', line 48 def to_i self.id end |