Class: PDF::Reader::Reference

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(id, gen) ⇒ Reference

Create a new Reference to an object with the specified id and revision number



33
34
35
# File 'lib/pdf/reader/reference.rb', line 33

def initialize (id, gen)
  @id, @gen = id, gen
end

Instance Attribute Details

#genObject (readonly)

Returns the value of attribute gen.



30
31
32
# File 'lib/pdf/reader/reference.rb', line 30

def gen
  @gen
end

#idObject (readonly)

Returns the value of attribute id.



30
31
32
# File 'lib/pdf/reader/reference.rb', line 30

def id
  @id
end

Instance Method Details

#==(obj) ⇒ Object Also known as: eql?



46
47
48
49
50
51
52
53
54
# File 'lib/pdf/reader/reference.rb', line 46

def ==(obj)
  return false unless obj.kind_of?(PDF::Reader::Reference)

  if obj.id == self.id && obj.gen == self.gen
    true
  else
    false
  end
end

#to_aObject

returns the current Reference object in an array with a single element



38
39
40
# File 'lib/pdf/reader/reference.rb', line 38

def to_a
  [self]
end

#to_iObject

returns the ID of this reference. Use with caution, ignores the generation id



43
44
45
# File 'lib/pdf/reader/reference.rb', line 43

def to_i
  self.id
end