src/java.base/share/classes/java/lang/package-info.java
author darcy
Wed, 25 Apr 2018 22:12:06 -0700
changeset 49895 661ef62a6618
parent 49508 8f041818aca9
permissions -rw-r--r--
8200478: For boxing conversion javac uses Long.valueOf which does not guarantee caching according to its javadoc Reviewed-by: bpb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
49508
8f041818aca9 8199176: Accessibility issues in java.base docs
joehw
parents: 47216
diff changeset
     2
 * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * Provides classes that are fundamental to the design of the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * programming language. The most important classes are {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * Object}, which is the root of the class hierarchy, and {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * Class}, instances of which represent classes at run time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * <p>Frequently it is necessary to represent a value of primitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * type as if it were an object. The wrapper classes {@code Boolean},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * {@code Character}, {@code Integer}, {@code Long}, {@code Float},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * and {@code Double} serve this purpose.  An object of type {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * Double}, for example, contains a field whose type is double,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * representing that value in such a way that a reference to it can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * stored in a variable of reference type.  These classes also provide
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * a number of methods for converting among primitive values, as well
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * as supporting such standard methods as equals and hashCode.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * {@code Void} class is a non-instantiable class that holds a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * reference to a {@code Class} object representing the type void.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * <p>The class {@code Math} provides commonly used mathematical
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * functions such as sine, cosine, and square root. The classes {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * String}, {@code StringBuffer}, and {@code StringBuilder} similarly
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * provide commonly used operations on character strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * <p>Classes {@code ClassLoader}, {@code Process}, {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * ProcessBuilder}, {@code Runtime}, {@code SecurityManager}, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * {@code System} provide "system operations" that manage the dynamic
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * loading of classes, creation of external processes, host
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * environment inquiries such as the time of day, and enforcement of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * security policies.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * <p>Class {@code Throwable} encompasses objects that may be thrown
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * by the {@code throw} statement. Subclasses of {@code Throwable}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * represent errors and exceptions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *
45433
01ecdcf197df 8181290: Invalid HTML 5 in core-libs docs
jjg
parents: 25859
diff changeset
    60
 * <a id="charenc"></a>
49508
8f041818aca9 8199176: Accessibility issues in java.base docs
joehw
parents: 47216
diff changeset
    61
 * <h2>Character Encodings</h2>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * The specification of the {@link java.nio.charset.Charset
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * java.nio.charset.Charset} class describes the naming conventions
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * for character encodings as well as the set of standard encodings
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * that must be supported by every implementation of the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * platform.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 5506
diff changeset
    69
 * @since 1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
package java.lang;