📄 ipersistentmap.java
字号:
package org.garret.perst;
import java.util.*;
/**
* Interface of persistent map
*/
public interface IPersistentMap<K extends Comparable, V extends IPersistent> extends SortedMap<K,V>, IPersistent, IResource
{
/**
* Select values of the map using search predicate
* This iterator doesn't support remove() method.
* @param cls class of index members
* @param predicate JSQL condition
* @return iterator through members of the collection matching search condition
*/
public Iterator<V> select(Class cls, String predicate);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -