Uses of Class
com.atlassian.confluence.search.v2.ScoringStrategy
-
Packages that use ScoringStrategy Package Description com.atlassian.confluence.internal.index.lucene com.atlassian.confluence.plugins.opensearch com.atlassian.confluence.search.v2 Provides an extensible, flexible search API. -
-
Uses of ScoringStrategy in com.atlassian.confluence.internal.index.lucene
Methods in com.atlassian.confluence.internal.index.lucene with parameters of type ScoringStrategy Modifier and Type Method Description SearchIndexAccessor
DefaultCustomSearchIndexRegistry. add(String name, String relativeIndexPath, ScoringStrategy scoringStrategy, AnalyzerDescriptorProvider analyzerDescriptorProvider)
LuceneConnection
CustomLuceneConnectionFactory. create(String relativePath, ScoringStrategy scoringStrategy, AnalyzerDescriptorProvider analyzerDescriptorProvider)
LuceneConnection
CustomLuceneConnectionFactoryImpl. create(String relativePath, ScoringStrategy scoringStrategy, AnalyzerDescriptorProvider analyzerDescriptorProvider)
-
Uses of ScoringStrategy in com.atlassian.confluence.plugins.opensearch
Methods in com.atlassian.confluence.plugins.opensearch with parameters of type ScoringStrategy Modifier and Type Method Description SearchIndexAccessor
OpenSearchCustomSearchIndexRegistry. add(String name, String relativeIndexPath, ScoringStrategy scoringStrategy, @Nullable AnalyzerDescriptorProvider analyzerDescriptorProvider)
-
Uses of ScoringStrategy in com.atlassian.confluence.search.v2
Methods in com.atlassian.confluence.search.v2 that return ScoringStrategy Modifier and Type Method Description static ScoringStrategy
ScoringStrategy. valueOf(String name)
Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this type with the specified name.static ScoringStrategy[]
ScoringStrategy. values()
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.atlassian.confluence.search.v2 with parameters of type ScoringStrategy Modifier and Type Method Description default SearchIndexAccessor
CustomSearchIndexRegistry. add(String name, ScoringStrategy scoringStrategy, @Nullable AnalyzerDescriptorProvider analyzerDescriptorProvider)
Deprecated.SearchIndexAccessor
CustomSearchIndexRegistry. add(String name, String relativeIndexPath, ScoringStrategy scoringStrategy, @Nullable AnalyzerDescriptorProvider analyzerDescriptorProvider)
Deprecated.Constructors in com.atlassian.confluence.search.v2 with parameters of type ScoringStrategy Constructor Description DelegatingSearchIndexAccessor(CustomSearchIndexRegistry customSearchIndexRegistry, String indexName, ScoringStrategy scoringStrategy, AnalyzerDescriptorProvider analyzerDescriptorProvider)
Deprecated.since 8.7.0 useDelegatingSearchIndexAccessor(com.atlassian.confluence.search.v2.CustomSearchIndexRegistry,java.lang.String,com.atlassian.confluence.plugins.index.api.AnalyzerDescriptorProvider)
Scoring strategy is no longer relevant when using OpenSearchDelegatingSearchIndexAccessor(CustomSearchIndexRegistry customSearchIndexRegistry, String indexName, String relativeIndexPath, ScoringStrategy scoringStrategy, AnalyzerDescriptorProvider analyzerDescriptorProvider)
Deprecated.since 8.6.0 useDelegatingSearchIndexAccessor(CustomSearchIndexRegistry, String, ScoringStrategy, AnalyzerDescriptorProvider)
relative path is no longer relevant when using OpenSearch.
-