class ActiveFedora::RDF::FieldMap::Builder

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

def build

def build
  type = index_field_config.data_type
  behaviors = index_field_config.behaviors
  return unless type && behaviors
  entry.merge!(type, behaviors, find_values)
end