⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 spannearquery.java

📁 索引aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
💻 JAVA
字号:
package org.apache.lucene.search.spans;/** * Copyright 2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *     http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */import java.io.IOException;import java.util.Collection;import java.util.List;import java.util.ArrayList;import java.util.Iterator;import org.apache.lucene.index.IndexReader;/** Matches spans which are near one another.  One can specify <i>slop</i>, the * maximum number of intervening unmatched positions, as well as whether * matches are required to be in-order. */public class SpanNearQuery extends SpanQuery {  private List clauses;  private int slop;  private boolean inOrder;  private String field;  /** Construct a SpanNearQuery.  Matches spans matching a span from each   * clause, with up to <code>slop</code> total unmatched positions between   * them.  * When <code>inOrder</code> is true, the spans from each clause   * must be * ordered as in <code>clauses</code>. */  public SpanNearQuery(SpanQuery[] clauses, int slop, boolean inOrder) {    // copy clauses array into an ArrayList    this.clauses = new ArrayList(clauses.length);    for (int i = 0; i < clauses.length; i++) {      SpanQuery clause = clauses[i];      if (i == 0) {                               // check field        field = clause.getField();      } else if (!clause.getField().equals(field)) {        throw new IllegalArgumentException("Clauses must have same field.");      }      this.clauses.add(clause);    }    this.slop = slop;    this.inOrder = inOrder;  }  /** Return the clauses whose spans are matched. */  public SpanQuery[] getClauses() {    return (SpanQuery[])clauses.toArray(new SpanQuery[clauses.size()]);  }  /** Return the maximum number of intervening unmatched positions permitted.*/  public int getSlop() { return slop; }  /** Return true if matches are required to be in-order.*/  public boolean isInOrder() { return inOrder; }  public String getField() { return field; }  public Collection getTerms() {    Collection terms = new ArrayList();    Iterator i = clauses.iterator();    while (i.hasNext()) {      SpanQuery clause = (SpanQuery)i.next();      terms.addAll(clause.getTerms());    }    return terms;  }  public String toString(String field) {    StringBuffer buffer = new StringBuffer();    buffer.append("spanNear([");    Iterator i = clauses.iterator();    while (i.hasNext()) {      SpanQuery clause = (SpanQuery)i.next();      buffer.append(clause.toString(field));      if (i.hasNext()) {        buffer.append(", ");      }    }    buffer.append("], ");    buffer.append(slop);    buffer.append(", ");    buffer.append(inOrder);    buffer.append(")");    return buffer.toString();  }  public Spans getSpans(final IndexReader reader) throws IOException {    if (clauses.size() == 0)                      // optimize 0-clause case      return new SpanOrQuery(getClauses()).getSpans(reader);    if (clauses.size() == 1)                      // optimize 1-clause case      return ((SpanQuery)clauses.get(0)).getSpans(reader);    return new NearSpans(this, reader);  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -