Uses of Class
org.mycore.services.fieldquery.MCRFieldValue

Packages that use MCRFieldValue
org.mycore.backend.lucene   
org.mycore.services.fieldquery   
 

Uses of MCRFieldValue in org.mycore.backend.lucene
 

Method parameters in org.mycore.backend.lucene with type arguments of type MCRFieldValue
 void MCRLuceneSearcher.addToIndex(String entryID, String returnID, List<MCRFieldValue> fields)
           
static org.apache.lucene.document.Document MCRLuceneSearcher.buildLuceneDocument(List<MCRFieldValue> fields)
          Build lucene document from transformed xml list
 

Uses of MCRFieldValue in org.mycore.services.fieldquery
 

Subclasses of MCRFieldValue in org.mycore.services.fieldquery
 class MCRQueryCondition
          Represents a simple query condition, which consists of a search field, a value and a comparison operator.
 

Methods in org.mycore.services.fieldquery that return MCRFieldValue
static MCRFieldValue MCRFieldValue.parseXML(Element xml)
          Parses a XML representation of a field value
 

Methods in org.mycore.services.fieldquery that return types with arguments of type MCRFieldValue
static List<MCRFieldValue> MCRData2Fields.buildFields(byte[] xml, String index, String source, String objectType)
          Extracts field values for indexing from the given JDOM xml document.
static List<MCRFieldValue> MCRData2Fields.buildFields(Document doc, String index)
          Extracts field values for indexing from the given JDOM xml document.
static List<MCRFieldValue> MCRData2Fields.buildFields(MCRFile file, String index)
          Extracts field values for indexing from the given MCRFile's metadata, xml content or text content.
static List<MCRFieldValue> MCRData2Fields.buildFields(MCRObject obj, String index)
          Extracts field values for indexing from the given MCRObject's metadata.
 List<MCRFieldValue> MCRHit.getMetaData()
           
 List<MCRFieldValue> MCRHit.getSortData()
           
 

Methods in org.mycore.services.fieldquery with parameters of type MCRFieldValue
 void MCRHit.addMetaData(MCRFieldValue value)
          Adds hit metadata like score or rank
 void MCRHit.addSortData(MCRFieldValue fieldValue)
          Adds data for sorting this hit
static MCRResults MCRMoreLikeThis.moreLikeThis(MCRFieldValue value, double minScore, int maxResults)
          Does "more like this" query, used to find documents with similar content.
 

Method parameters in org.mycore.services.fieldquery with type arguments of type MCRFieldValue
 void MCRSearcher.addToIndex(String entryID, String returnID, List<MCRFieldValue> fields)
          Adds field values to the search index.