abstract class PDF::Core::Primitives::Object
   
  - PDF::Core::Primitives::Object
 - Reference
 - Object
 
Direct Known Subclasses
- PDF::Core::Primitives::Array
 - PDF::Core::Primitives::Dictionary
 - PDF::Core::Primitives::Integer
 - PDF::Core::Primitives::Name
 - PDF::Core::Primitives::Real
 - PDF::Core::Primitives::Reference
 - PDF::Core::Primitives::Stream
 
Defined in:
pdf/core/primitives/object.crInstance Method Summary
- #byte_offset : Int64 | Nil
 - #byte_offset=(byte_offset : Int64 | Nil)
 - #generation : Int32
 - #generation=(generation : Int32)
 - #indirect? : Bool
 - #number : Int32 | Nil
 - #number=(number : Int32 | Nil)
 - #reference : Reference
 - #to_s(indent : Int32) : String
 - 
        #to_s : String
        
          
Returns a nicely readable and concise string representation of this object, typically intended for users.
 - #xref : String
 
Instance Method Detail
        
        def to_s : String
        #
      
      
        
              Description copied from class Object
            
          
          Returns a nicely readable and concise string representation of this object, typically intended for users.
This method should usually not be overridden. It delegates to
#to_s(IO) which can be overridden for custom implementations.
Also see #inspect.