📄 store.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 + -