Searched defs:components (Results 1 - 4 of 4) sorted by relevance
/lucene-3.6.0/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/ext/ |
H A D | ExtensionStub.java | 28 public Query parse(ExtensionQuery components) throws ParseException { argument 29 return new TermQuery(new Term(components.getField(), components
|
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/component/ |
H A D | SearchHandler.java | 45 static final String INIT_COMPONENTS = "components"; 46 static final String INIT_FIRST_COMPONENTS = "first-components"; 47 static final String INIT_LAST_COMPONENTS = "last-components"; 51 protected List<SearchComponent> components = null; field in class:SearchHandler 78 * Initialize the components based on name. Note, if using {@link #INIT_FIRST_COMPONENTS} or {@link #INIT_LAST_COMPONENTS}, 79 * then the {@link DebugComponent} will always occur last. If this is not desired, then one must explicitly declare all components using 109 "First/Last components only valid if you do not declare 'components'"); 115 components = new ArrayList<SearchComponent>( list.size() ); 122 components [all...] |
H A D | ResponseBuilder.java | 73 public List<SearchComponent> components; field in class:ResponseBuilder 77 public ResponseBuilder(SolrQueryRequest req, SolrQueryResponse rsp, List<SearchComponent> components) argument 81 this.components = components; 131 // if this isn't a private request, let other components modify it. 132 for (SearchComponent component : components) { 150 /* private... components that don't own these shouldn't use them */
|
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/ |
H A D | CategoryPath.java | 26 * A CategoryPath holds a sequence of string components, specifying the 30 * ways: First, it keeps the components internally in two arrays, rather than 32 * object (which can be clear()ed and new components add()ed again) and of 39 // A category path is a sequence of string components. It is kept 44 // how many components are actually set. 53 * Return the number of components in the facet path. Note that this is 54 * <I>not</I> the number of characters, but the number of components. 61 * Trim the last components from the path. 64 * Number of components to trim. If larger than the number of 65 * components thi 529 CategoryPath(CharSequence... components) argument [all...] |
Completed in 1938 milliseconds