Class ParseNumericFieldUpdateProcessorFactory

All Implemented Interfaces:
NamedListInitializedPlugin, SolrCoreAware
Direct Known Subclasses:
ParseDoubleFieldUpdateProcessorFactory, ParseFloatFieldUpdateProcessorFactory, ParseIntFieldUpdateProcessorFactory, ParseLongFieldUpdateProcessorFactory

public abstract class ParseNumericFieldUpdateProcessorFactory extends FieldMutatingUpdateProcessorFactory
Abstract base class for numeric parsing update processor factories. Subclasses can optionally configure a locale. If no locale is configured, then Locale.ROOT will be used. E.g. to configure the French/France locale:
 <processor class="solr.Parse[Type]FieldUpdateProcessorFactory">
   <str name="locale">fr_FR</str>
   [...]
 </processor>

See Locale for a description of acceptable language, country (optional) and variant (optional) values, joined with underscore(s).

Since:
4.4.0