Uses of Class
org.apache.solr.update.processor.FieldMutatingUpdateProcessorFactory

Packages that use FieldMutatingUpdateProcessorFactory
org.apache.solr.update.processor UpdateRequestProcessorFactory APIs and implementations for use in UpdateRequestProcessorChain
 

Uses of FieldMutatingUpdateProcessorFactory in org.apache.solr.update.processor
 

Subclasses of FieldMutatingUpdateProcessorFactory in org.apache.solr.update.processor
 class ConcatFieldUpdateProcessorFactory
          Concatenates multiple values for fields matching the specified conditions using a configurable delimiter which defaults to ", ".
 class CountFieldValuesUpdateProcessorFactory
           Replaces any list of values for a field matching the specified conditions with the the count of the number of values for that field.
 class FieldLengthUpdateProcessorFactory
          Replaces any CharSequence values found in fields matching the specified conditions with the lengths of those CharSequences (as an Integer).
 class FieldValueSubsetUpdateProcessorFactory
          Base class for processors that want to mutate selected fields to only keep a subset of the original values.
 class FirstFieldValueUpdateProcessorFactory
          Keeps only the first value of fields matching the specified conditions.
 class HTMLStripFieldUpdateProcessorFactory
          Strips all HTML Markup in any CharSequence values found in fields matching the specified conditions.
 class IgnoreFieldUpdateProcessorFactory
          Ignores & removes fields matching the specified conditions from any document being added to the index.
 class LastFieldValueUpdateProcessorFactory
          Keeps only the last value of fields matching the specified conditions.
 class MaxFieldValueUpdateProcessorFactory
          An update processor that keeps only the the maximum value from any selected fields where multiple values are found.
 class MinFieldValueUpdateProcessorFactory
          An update processor that keeps only the the minimum value from any selected fields where multiple values are found.
 class RegexReplaceProcessorFactory
          An updated processor that applies a configured regex to any CharSequence values found in the selected fields, and replaces any matches with the configured replacement string
 class RemoveBlankFieldUpdateProcessorFactory
          Removes any values found which are CharSequence with a length of 0.
 class TrimFieldUpdateProcessorFactory
          Trims leading and trailing whitespace from any CharSequence values found in fields matching the specified conditions and returns the resulting String.
 class TruncateFieldUpdateProcessorFactory
          Truncates any CharSequence values found in fields matching the specified conditions to a maximum character length.
 



Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.