# File rbCFTypes.rb, line 158
    def initialize(value=nil,format=DATA_BASE64)
      if(format == DATA_RAW) then
        @value = Base64.encode64(value)
      else
        @value = value
      end
    end