📄 localiterator.java
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2001-2002 * Sleepycat Software. All rights reserved. * * $Id: LocalIterator.java,v 1.2 2002/08/09 01:56:09 bostic Exp $ */package com.sleepycat.db.rpcserver;import java.util.*;/** * Iterator interface. Note that this matches java.util.Iterator * but maintains compatibility with Java 1.1 * Intentionally package-protected exposure. */interface LocalIterator { boolean hasNext(); Object next(); void remove();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -