rs.data.util.DaoCollectionIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data Show documentation
Show all versions of data Show documentation
Library for generic Data Access classes
/*
* This file is part of RS Library (Data Base Library).
*
* RS Library is free software: you can redistribute it
* and/or modify it under the terms of version 3 of the GNU
* Lesser General Public License as published by the Free Software
* Foundation.
*
* RS Library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with RS Library. If not, see
* .
*/
package rs.data.util;
import java.util.Collection;
/**
* Performs an iteration on a collection.
* @author ralph
*
*/
public class DaoCollectionIterator extends DaoIteratorImpl {
/**
* Constructor.
* @param collection - the collection to iterate over
*/
public DaoCollectionIterator(Collection collection) {
super(collection.iterator());
}
}