Category:Apache Commons Lang: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with "The standard Java libraries fail to provide enough methods for manipulation of its core classes. Apache Commons Lang provides these extra methods. Lang provides a host of help...")
 
mNo edit summary
Line 5: Line 5:
Lang 3+ requires Java 5.
Lang 3+ requires Java 5.


* [http://commons.apache.org/proper/commons-lang/index.html Home page]
* [http://commons.apache.org/proper/commons-lang/ Home page]
* Consumption
* Consumption
** Gradle: <code>'org.apache.commons:commons-lang3:latest.release'</code>
** Gradle: <code>'org.apache.commons:commons-lang3:latest.release'</code>

Revision as of 19:52, 3 October 2013

The standard Java libraries fail to provide enough methods for manipulation of its core classes. Apache Commons Lang provides these extra methods. Lang provides a host of helper utilities for the java.lang API, notably String manipulation methods, basic numerical methods, object reflection, concurrency, creation and serialization and System properties. Additionally it contains basic enhancements to java.util.Date and a series of utilities dedicated to help with building methods, such as hashCode, toString and equals. Note that Lang 3.0 (and subsequent versions) use a different package (org.apache.commons.lang3) than the previous versions (org.apache.commons.lang), allowing it to be used at the same time as an earlier version.

Lang 3+ requires Java 5.

  • Home page
  • Consumption
    • Gradle: 'org.apache.commons:commons-lang3:latest.release'

Pages in category "Apache Commons Lang"

This category contains only the following page.