00001 /*- 00002 * See the file LICENSE for redistribution information. 00003 * 00004 * Copyright (c) 2001-2005 00005 * Sleepycat Software. All rights reserved. 00006 * 00007 * $Id: LocalIterator.java,v 12.1 2005/06/16 20:23:41 bostic Exp $ 00008 */ 00009 00010 package com.sleepycat.db.rpcserver; 00011 00012 import java.util.*; 00013 00019 interface LocalIterator { 00020 boolean hasNext(); 00021 Object next(); 00022 void remove(); 00023 }