Parent

Included Modules

Class/Module Index [+]

Quicksearch

Origami::ByteString

Class representing an ASCII String Object.

Public Class Methods

new(str = "") click to toggle source

Creates a new PDF String.

str

The string value.

# File lib/origami/string.rb, line 266
def initialize(str = "")
  
  unless str.is_a?(::String)
    raise TypeError, "Expected type String, received #{str.class}."
  end
  
  super(str)
end

Public Instance Methods

to_obfuscated_str() click to toggle source
# File lib/origami/obfuscation.rb, line 173
def to_obfuscated_str
  to_s
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.