objectos.lang.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of objectos-lang Show documentation
Show all versions of objectos-lang Show documentation
Objectos Lang provides utilities for classes in the java.lang package.
/*
* Copyright (C) 2022-2023 Objectos Software LTDA.
*
* 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.
*/
/**
* Provides utilities for working with instances whose type is of the
* {@code java.lang} package; also provides a type-safe note sink API.
*
* {@code java.lang} utilities
*
*
* The utilities are listed below grouped by the {@code java.lang} type
* it relates to
*
*
{@code Object}
*
*
* - {@link objectos.lang.Check}
*
- {@link objectos.lang.Equals}
*
- {@link objectos.lang.HashCode}
*
- {@link objectos.lang.ToString}
*
- {@link objectos.lang.ToString.Formattable}
*
*
* Note sink API
*
*
* Additionally, this package provides a type-safe note sink API. The main
* reference can be found in classes listed below:
*
*
* - {@link objectos.lang.Note}
*
- {@link objectos.lang.NoteSink}
*
*
* Handling of {@code null} arguments
*
*
* Unless otherwise specified, methods in this package will throw a
* {@link NullPointerException} if given a {@code null} argument.
*
* @since 0.2
*/
package objectos.lang;