package-info.java revision 1d580d0f6ee4f21eb309ba7b509d2c6d671c4044
1/*
2 * Copyright (C) 2010 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 * Static utilities for working with the eight primitive types and {@code void}.
19 *
20 * <p>This package is a part of the open-source
21 * <a href="http://guava-libraries.googlecode.com">Guava libraries</a>.
22 *
23 * <h2>Contents</h2>
24 *
25 * <h3>General static utilities</h3>
26 *
27 * <ul>
28 * <li>{@link com.google.common.primitives.Primitives}
29 * </ul>
30 *
31 * <h3>Per-type static utilities</h3>
32 *
33 * <ul>
34 * <li>{@link com.google.common.primitives.Booleans}
35 * <li>{@link com.google.common.primitives.Bytes}
36 *   <ul>
37 *     <li>{@link com.google.common.primitives.SignedBytes}
38 *     <li>{@link com.google.common.primitives.UnsignedBytes}
39 *   </ul>
40 * <li>{@link com.google.common.primitives.Chars}
41 * <li>{@link com.google.common.primitives.Doubles}
42 * <li>{@link com.google.common.primitives.Floats}
43 * <li>{@link com.google.common.primitives.Ints}
44 *   <ul>
45 *     <li>{@link com.google.common.primitives.UnsignedInts}
46 *   </ul>
47 * <li>{@link com.google.common.primitives.Longs}
48 *   <ul>
49 *     <li>{@link com.google.common.primitives.UnsignedLongs}
50 *   </ul>
51 * <li>{@link com.google.common.primitives.Shorts}
52 * </ul>
53 *
54 * <h3>Value types</h3>
55 * <ul>
56 *   <li>{@link com.google.common.primitives.UnsignedInteger}
57 *   <li>{@link com.google.common.primitives.UnsignedLong}
58 * </ul>
59 */
60@ParametersAreNonnullByDefault
61package com.google.common.primitives;
62
63import javax.annotation.ParametersAreNonnullByDefault;
64