📄 ipersistentlist.java
字号:
package org.garret.perst;
import java.util.List;
import java.util.RandomAccess;
/**
* Interface for ordered collection (sequence).
* The user can access elements by their integer index (position in
* the list), and search for elements in the list.<p>
*/
public interface IPersistentList<E extends IPersistent> extends IPersistent, List<E> {
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -