All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.store.DirectoryWrapper Maven / Gradle / Ivy

package org.apache.lucene.store;

import java.io.IOException;

/**
 * Allows to get the native directory implementations
 *
 * @author kimchy
 */
public interface DirectoryWrapper {

    Directory getWrappedDirectory();

    void clearWrapper() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy