1 /*
2  * Copyright (C) 2011 The Guava Authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 /**
18  * This package contains caching utilities.
19  *
20  * <p>The core interface used to represent caches is {@link com.google.common.cache.Cache}.
21  * In-memory caches can be configured and created using
22  * {@link com.google.common.cache.CacheBuilder}, with cache entries being loaded by
23  * {@link com.google.common.cache.CacheLoader}. Statistics about cache performance are exposed using
24  * {@link com.google.common.cache.CacheStats}.
25  *
26  * <p>See the Guava User Guide article on <a href=
27  * "http://code.google.com/p/guava-libraries/wiki/CachesExplained">caches</a>.
28  *
29  * <p>This package is a part of the open-source
30  * <a href="http://guava-libraries.googlecode.com">Guava libraries</a>.
31  *
32  * @author Charles Fry
33  */
34 @ParametersAreNonnullByDefault
35 package com.google.common.cache;
36 
37 import javax.annotation.ParametersAreNonnullByDefault;
38 
39