Interface IndexFieldProvider


@Deprecated public interface IndexFieldProvider
Deprecated.
This interface exposes Lucene API directly - it will be removed soon. Use the "dynamicBoost" feature instead.
Implementations of this interface would get callbacks while indexing documents. It's the responsibility of the implementation to exit as early as possible if it doesn't care about the document being indexed.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final IndexFieldProvider
    Deprecated.
    Implementation which doesn't do anything useful...
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull Iterable<Field>
    getAugmentedFields(String path, NodeState document, NodeState indexDefinition)
    Deprecated.
    This method would get called while indexing a document.
    @NotNull Set<String>
    Deprecated.
    This method is used to find which node types are supported by the implementation.
  • Field Details

    • DEFAULT

      static final IndexFieldProvider DEFAULT
      Deprecated.
      Implementation which doesn't do anything useful... yet, abides with the contract.
  • Method Details