class Ontopia::Topicmaps::IdStringifier

Constants

NO_VALUE

Public Instance Methods

to_string(object) click to toggle source
# File lib/ontopia/topicmaps/stringifiers.rb, line 36
def to_string(object)
  case object
    when TopicIF            then to_string(object.get_item_identifiers.first)
    when TypedIF            then to_string(object.get_type)
    when URIFragmentLocator then object.fragment
    else                         NO_VALUE
  end
end