class ActiveFedora::RDF::FieldMap::Builder

Abstract class that implements the PolymorphicBuilder interface and is used for for building FieldMap entries. You can extend this object to create your own builder for creating the values in your solr fields.

Public Instance Methods

build() click to toggle source
# File lib/active_fedora/rdf/field_map.rb, line 64
def build
  type = index_field_config.data_type
  behaviors = index_field_config.behaviors
  return unless type && behaviors
  entry.merge!(type, behaviors, find_values)
end