Example usage for org.apache.lucene.codecs DocValuesFormat getName

List of usage examples for org.apache.lucene.codecs DocValuesFormat getName

Introduction

In this page you can find the example usage for org.apache.lucene.codecs DocValuesFormat getName.

Prototype

@Override
    public final String getName() 

Source Link

Usage

From source file:org.elasticsearch.index.codec.docvaluesformat.PreBuiltDocValuesFormatProvider.java

License:Apache License

public PreBuiltDocValuesFormatProvider(DocValuesFormat postingsFormat) {
    this(postingsFormat.getName(), postingsFormat);
}