GitHub user thiagoh opened a pull request:
https://github.com/apache/commons-lang/pull/26
Adding the new JsonToStringStyle to ToStringStyle
Implementation of `JsonToStringStyle` inside `ToStringStyle` that outputs
the String representation of the object in json format
GitHub user thiagoh opened a pull request:
https://github.com/apache/commons-lang/pull/25
Adding unwrap and unwrapFull methods to StringUtils
Adding the following methods from `StringUtils`:
* `public static String unwrap(String str, char unwrapChar)`
* `public static String
GitHub user thiagoh opened a pull request:
https://github.com/apache/commons-lang/pull/24
Adding to StringUtils truncate method and test cases
Adding the following methods from `StringUtils`:
* `public static String truncate(final String str, final int maxWidth)`
* `public
GitHub user thiagoh opened a pull request:
https://github.com/apache/commons-lang/pull/23
Adding the maxVA and minVA methods to NumberUtils and test methods
Adding the following methods to NumberUtils:
* `public static long maxVA(final long... number)`
* `public static
GitHub user thiagoh opened a pull request:
https://github.com/apache/commons-lang/pull/22
Fixing NumberUtils JAVADoc of the following methods
Fixing NumberUtils comments of the following methods:
* `public static long max(final long[] array)`
* `public static long max
GitHub user thiagoh opened a pull request:
https://github.com/apache/commons-collections/pull/2
Removing unnecessary method
Removing unnecessary method `private V put(final K key, final V value,
final long now)` once the `final long now` parameter was never used.
The
GitHub user thiagoh opened a pull request:
https://github.com/apache/commons-lang/pull/21
Add wrap (with String or char) to StringUtils
Suggestion to add following methods to StringUtils
* `wrap(String str, char wrapWith)`
* `wrap(String str, String wrapWith)`
You can