Apache Commons Lang
Go to file
Peter Verhas 23931d528e Functions Javadoc (#466)
* LANG-1480 getAbbreviatedName refactored to create appropriate length short class names

* LANG-1480 code fixed for special extreme case ".." abbreviated to 1 length should result ".." it was throwing exception. Tests are added

* import changed to avoid wild cards
apache master merged into current branch

* Mutable object import was moved to it's original place

* some accidental formatting reverted

* some accidental formatting reverted

* some accidental formatting reverted

* some accidental formatting reverted

* some accidental formatting reverted

* some accidental formatting reverted

* some accidental formatting reverted

* added another test case

* LANG-1480 fixing JavaDoc documentation as per requested by garydgregory

* LANG-1480 shortcut implemented, argument renamed, more tests

* LANG-1480 checkstyle update

* LANG-1492 tests methods modified to be public

* LANG-1480 imports rearranged

* LANG-1480 imports rearranged

* LANG-1480 imports rearranged

* javadoc was added that explains why there is a return type for a method that never returns

* wording changed in comment

* fixes based on code review by garydgregory
2019-12-21 08:42:53 -05:00
.github/workflows [LANG-1406] StringIndexOutOfBoundsException in 2019-09-11 09:57:28 -04:00
src Functions Javadoc (#466) 2019-12-21 08:42:53 -05:00
.gitattributes Fixed line ending issues once and for all 2016-01-17 20:15:51 +01:00
.gitignore Ignore eclipse-cs generated file 2016-12-22 15:46:08 +00:00
.travis.yml Travis CI: Drop Java 12 build (Java 13 is now Generally Available). 2019-09-20 10:15:56 +02:00
CONTRIBUTING.md Prepare for release 3.8. 2018-07-15 23:00:39 -06:00
Jenkinsfile Add proposal for Jenkins Pipeline (#410) 2019-03-23 13:50:53 +01:00
LICENSE.txt Add blank line 2004-02-19 21:23:04 +00:00
NOTICE.txt Update NOTICE file for 2019. 2019-05-16 14:07:21 -04:00
README.md (update) a few more version upgrades 3.8.1 -> 3.9 2019-04-09 14:08:56 -04:00
RELEASE-NOTES.txt Fix documentation of Java version from "8.0" to "8". 2019-07-18 10:09:55 -04:00
checkstyle-suppressions.xml Prevent redundant modifiers 2017-06-06 16:11:45 +02:00
checkstyle.xml - Javadoc. 2019-05-10 08:58:17 -04:00
pom.xml Update POM parent: org.apache.commons:commons-parent 48 -> 50. 2019-12-21 07:57:41 -05:00
spotbugs-exclude-filter.xml Remove no longer necessary SpotBugs excludes. 2019-12-20 13:28:20 +01:00

README.md

Apache Commons Lang

Build Status Coverage Status Maven Central Javadocs

Apache Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.

Documentation

More information can be found on the Apache Commons Lang homepage. The Javadoc can be browsed. Questions related to the usage of Apache Commons Lang should be posted to the user mailing list.

Where can I get the latest release?

You can download source and binaries from our download page.

Alternatively you can pull it from the central Maven repositories:

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

Contributing

We accept Pull Requests via GitHub. The developer mailing list is the main channel of communication for contributors. There are some guidelines which will make applying PRs easier for us:

  • No tabs! Please use spaces for indentation.
  • Respect the code style.
  • Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.
  • Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running mvn clean test.

If you plan to contribute on a regular basis, please consider filing a contributor license agreement. You can learn more about contributing via GitHub in our contribution guidelines.

License

This code is under the Apache Licence v2.

See the NOTICE.txt file for required notices and attributions.

Donations

You like Apache Commons Lang? Then donate back to the ASF to support the development.

Additional Resources