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

com.univocity.api.io.ResourceProvider Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2013 Univocity Software Pty Ltd. All rights reserved.
 * This file is subject to the terms and conditions defined in file
 * 'LICENSE.txt', which is part of this source code package.
 */

package com.univocity.api.io;

/**
 * Generic interface to define classes that provide a given resource.
 *
 * @param  the type of resource provided by this ResourceProvider
 *
 * @author Univocity Software Pty Ltd - [email protected]
 * @see WriterProvider
 * @see ReaderProvider
 * @see InputQueue
 */
public interface ResourceProvider {
	/**
	 * Returns the resource provided by this class
	 *
	 * @return the resource provided by this class
	 */
	T getResource();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy