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

org.carrot2.util.ResourceLookup Maven / Gradle / Ivy

The newest version!
/*
 * Carrot2 project.
 *
 * Copyright (C) 2002-2023, Dawid Weiss, Stanisław Osiński.
 * All rights reserved.
 *
 * Refer to the full license file "carrot2.LICENSE"
 * in the root folder of the repository checkout or at:
 * https://www.carrot2.org/carrot2.LICENSE
 */
package org.carrot2.util;

import java.io.IOException;
import java.io.InputStream;

public interface ResourceLookup {
  InputStream open(String resource) throws IOException;

  boolean exists(String resource);

  String pathOf(String resource);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy