Flowdock
method

screen_data_str

Importance_0
v1_8_6_287 - Show latest stable - 0 notes - Class: XSD::XSDInteger
screen_data_str(str) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/xsd/datatypes.rb, line 1012
  def screen_data_str(str)
    begin
      data = Integer(str)
    rescue ArgumentError
      raise ValueSpaceError.new("#{ type }: cannot accept '#{ str }'.")
    end
    unless validate(data)
      raise ValueSpaceError.new("#{ type }: cannot accept '#{ str }'.")
    end
    data
  end
Register or log in to add new notes.