aboutsummaryrefslogtreecommitdiff
path: root/guava/src/com/google/common/base/package-info.java
blob: f2218562e82b74cf76feb063b9c75ab25b240039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * Copyright (C) 2007 The Guava Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */

/**
 * Basic utility libraries and interfaces.
 *
 * <p>This package is a part of the open-source <a href="http://github.com/google/guava">Guava</a>
 * library.
 *
 * <h2>Contents</h2>
 *
 * <h3>String-related utilities</h3>
 *
 * <ul>
 *   <li>{@link com.google.common.base.Ascii}
 *   <li>{@link com.google.common.base.CaseFormat}
 *   <li>{@link com.google.common.base.CharMatcher}
 *   <li>{@link com.google.common.base.Charsets}
 *   <li>{@link com.google.common.base.Joiner}
 *   <li>{@link com.google.common.base.Splitter}
 *   <li>{@link com.google.common.base.Strings}
 * </ul>
 *
 * <h3>Function types</h3>
 *
 * <ul>
 *   <li>{@link com.google.common.base.Function}, {@link com.google.common.base.Functions}
 *   <li>{@link com.google.common.base.Predicate}, {@link com.google.common.base.Predicates}
 *   <li>{@link com.google.common.base.Equivalence}
 *   <li>{@link com.google.common.base.Converter}
 *   <li>{@link com.google.common.base.Supplier}, {@link com.google.common.base.Suppliers}
 * </ul>
 *
 * <h3>Other</h3>
 *
 * <ul>
 *   <li>{@link com.google.common.base.Defaults}
 *   <li>{@link com.google.common.base.Enums}
 *   <li>{@link com.google.common.base.Objects}
 *   <li>{@link com.google.common.base.Optional}
 *   <li>{@link com.google.common.base.Preconditions}
 *   <li>{@link com.google.common.base.Stopwatch}
 *   <li>{@link com.google.common.base.Throwables}
 * </ul>
 *
 */
@CheckReturnValue
@ParametersAreNonnullByDefault
package com.google.common.base;

import com.google.errorprone.annotations.CheckReturnValue;
import javax.annotation.ParametersAreNonnullByDefault;