store.java

来自「EasyDBO v0.4 是一个非常适合中小型软件数据库开发的数据持久层框架」· Java 代码 · 共 21 行

JAVA
21
字号
package com.easyjf.cache.store;import com.easyjf.cache.Element;import java.io.IOException;import java.util.Set;public interface Store {    void put(Element element) throws IOException;    Element get(Object key) throws IOException;    Element remove(Object key) throws IOException;    boolean removeElement(Object value) throws IOException;    Set getKeySet();    void removeAll() throws IOException;      void dispose() throws IOException;      int getSize();    int getStatus();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?