method

screen_data

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: XSD::XSDAnyURI
screen_data(value) 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 935
  def screen_data(value)
    begin
      URI.parse(value.to_s.strip)
    rescue URI::InvalidURIError
      raise ValueSpaceError.new("#{ type }: cannot accept '#{ value }'.")
    end
  end
Register or log in to add new notes.