⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 store.java

📁 简易java框架开源论坛系统,简 易java框架开源论坛系统
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -