Apache Commons Lang Documentation

repository·master·Indexed 25 days ago

https://github.com/apache/commons-lang

A set of Java utility classes that extend and enhance the standard java.lang hierarchy to simplify common tasks involving strings, numbers, concurrency, and object manipulation.

Tokens
313
Snippets
3
Records
4
Agent score
34%

What's inside Apache Commons Lang

  1. Overview of Apache Commons Lang

    master
    Apache Commons Lang is a package of Java utility classes for the classes in java.lang's hierarchy, or those considered standard enough to justify existence in java.lang. It provides enhanced versions of core Java classes to simplify common programming tasks.
  2. Build Apache Commons Lang from source

    master

    To build the project from source, you need a Java JDK and Apache Maven installed. The required Java version is specified in the pom.xml under the maven.compiler.source property.

    To run all tests and checks, execute the following command in your terminal:

    mvn
  3. Install Apache Commons Lang via Maven

    master

    To use Apache Commons Lang in your Java project, add the following dependency to your pom.xml file. This pulls the library from the central Maven repositories.

    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
      <version>3.20.0</version>
    </dependency>