In Files

  • xsd/datatypes.rb

Class/Module Index [+]

Quicksearch

XSD::XSDBase64Binary

Constants

Type

Public Class Methods

new(value = nil) click to toggle source

String in Ruby could be a binary.

 
               # File xsd/datatypes.rb, line 903
def initialize(value = nil)
  init(Type, value)
end
            

Public Instance Methods

set_encoded(value) click to toggle source
 
               # File xsd/datatypes.rb, line 907
def set_encoded(value)
  if /^[A-Za-z0-9+\/=]*$/ !~ value
    raise ValueSpaceError.new("#{ type }: cannot accept '#{ value }'.")
  end
  @data = String.new(value).strip
  @is_nil = false
end
            
string() click to toggle source
 
               # File xsd/datatypes.rb, line 915
def string
  @data.unpack("m")[0]
end