![JAR search and dependency download from the Maven repository](/logo.png)
de.julielab.xmlData.dataBase.DBCIterator Maven / Gradle / Ivy
/**
* DBCIterator.java
*
* Copyright (c) 2012, JULIE Lab.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
*
* Author: faessler
*
* Current version: 1.0
* Since version: 1.0
*
* Creation date: 13.01.2012
**/
/**
*
*/
package de.julielab.xmlData.dataBase;
import java.util.Iterator;
/**
*
* Abstract class for iterators returned by the DataBaseConnector
* which hold JDBC Connection objects. This class defines a method
* {@link #close()} which should be implemented to free employed resources
* such as database connections, threads etc.
*
*
* @author faessler
*
*/
public abstract class DBCIterator implements Iterator {
/**
* Frees resources occupied by this iterator (e.g. database connections).
*/
public abstract void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy