memorycacheset.java

来自「world wind java sdk 源码」· Java 代码 · 共 31 行

JAVA
31
字号
/*Copyright (C) 2001, 2006 United States Governmentas represented by the Administrator of theNational Aeronautics and Space Administration.All Rights Reserved.*/package gov.nasa.worldwind.cache;import gov.nasa.worldwind.util.PerformanceStatistic;import java.util.*;/** * @author tag * @version $Id: MemoryCacheSet.java 6911 2008-10-03 19:35:45Z tgaskins $ */public interface MemoryCacheSet{    boolean containsCache(String key);    MemoryCache getCache(String cacheKey);    MemoryCache addCache(String key, MemoryCache cache);    Collection<PerformanceStatistic> getPerformanceStatistics();    void clear();    Map<String, MemoryCache> getAllCaches();}

⌨️ 快捷键说明

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