List of usage examples for org.apache.lucene.index MultiDocValues getNormValues
public static NumericDocValues getNormValues(final IndexReader r, final String field) throws IOException
From source file:org.apache.solr.index.SlowCompositeReaderWrapper.java
License:Apache License
@Override public NumericDocValues getNormValues(String field) throws IOException { ensureOpen(); return MultiDocValues.getNormValues(in, field); }
From source file:org.apache.tika.eval.tools.SlowCompositeReaderWrapper.java
License:Apache License
@Override public NumericDocValues getNormValues(String field) throws IOException { ensureOpen();/*from www. ja v a 2 s. c om*/ return MultiDocValues.getNormValues(in, field); // TODO cache? }