commons-lang icon indicating copy to clipboard operation
commons-lang copied to clipboard

Apache Commons Lang

Results 131 commons-lang issues
Sort by recently updated
recently updated
newest added

1. To String method earlier used to give stack overflow error in case of cyclic reference. 2. Added a cycle detection check before calling toString recursively on type parameters. https://issues.apache.org/jira/browse/LANG-1524

Using an Instance to create a LocalDate from a Calendar does not work on dates before the Gregorian/Julian cutover. So use this code instead, and add tests for years before...

Checks whether the given String is a hex number. * NumberUtils.isHexNumber(null)) = false * NumberUtils.isHexNumber("")) = false * NumberUtils.isHexNumber("0x12345678")) = true * NumberUtils.isHexNumber("0x7fffffffffffffff")) = true * NumberUtils.isHexNumber("0x7FFFFFFFFFFFFFFF")) = true *...

The idea it's have a function that check if a given throwable is a checked exception. There are some similar function in ConcurrentUtils, but have package visibility and return the...

Determine whether the given field is a "public static final" constant.