Example usage for org.apache.lucene.store IndexOutput getName

List of usage examples for org.apache.lucene.store IndexOutput getName

Introduction

In this page you can find the example usage for org.apache.lucene.store IndexOutput getName.

Prototype


public String getName() 

Source Link

Document

Returns the name used to create this IndexOutput .

Usage

From source file:org.codelibs.elasticsearch.common.lucene.store.FilterIndexOutput.java

License:Apache License

public FilterIndexOutput(String resourceDescription, IndexOutput out) {
    super(resourceDescription, out.getName());
    this.out = out;
}