Tagged Questions

Apache Commons Lang provides a library of helper methods and classes that augment the functionality found in the java.lang API.

learn more… | top users | synonyms

5
votes
2answers
209 views

Why isn't commons-lang in the java Standard API?

It seems like every java project I join or start on always has commons-lang as a dependency - and for good reason. commons-lang has tons of classes and utility methods that are pretty standard fair ...
5
votes
1answer
352 views

Is there Commons AnnotationUtils like library? (Java)

I can't find a general utilities (static methods) library for querying for annotations other than either using the annotations api directly and writing my own or using Springs: Springs Annotation ...
3
votes
2answers
89 views

What is the Commons Lang and how do I use it? (Java)

I was trying to find a way to do some string manipulation and ran across the Commons Lang in a response to another question posted here on stackoverflow. From what I can tell it's a collection of ...
2
votes
3answers
75 views

Numeric validation in Commons Lang

While using the org.apache.commons.lang.math.NumberUtils.isNumber(String str) function, I see that passing a string like "1f" passes validation while passing "1a" fails. What kind of alphabets are ...
2
votes
4answers
724 views

Is StringUtils.isNumeric() method specification logically correct?

Apache's StringUtils.isNumeric() method specification says: Checks if the String contains only unicode digits. A decimal point is not a unicode digit and returns false. Null will return false. An ...
1
vote
2answers
403 views

In what format does ToStringBuilder.reflectionToString(Object) display dates?

In what format does ToStringBuilder.reflectionToString(Object) display dates? According to the Apache Commons Lang 2.4 documentation, ToStringBuilder.reflectionToString(Object) delegates to ...
1
vote
3answers
151 views

Common Libraries at a Company

I've noticed in pretty much every company I've worked that they have a common library that is generally shared across a number of projects. More often than not this has been a single companyx-commons ...
0
votes
2answers
185 views

Using Apache SystemUtils Java

I am trying to use the Apache Java library SystemUtils to determine the operating system being used. Here is a link: http://commons.apache.org/lang/api-2.4/org/apache/commons/lang/SystemUtils.html I ...
0
votes
3answers
204 views

How to install commons-lang src to local repository?

I want to use the commons-lang by maven,but apache repository isn't ,I down commons-lang-src publish in local repository ,but is warning. [ERROR] Failed to execute goal ...
0
votes
1answer
271 views

How do I set the format of toString methods with ToStringBuilder in commons-lang?

how do I configure the setting of the format for toString