Package org.kohsuke.args4j
Class Utilities
- java.lang.Object
-
- org.kohsuke.args4j.Utilities
-
class Utilities extends java.lang.Object
Misc utility methods. Don't make this class visible to the outside world. When we switch to JDK 1.7, re-check the sense of this class.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Utilities()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description (package private) static void
checkNonNull(java.lang.Object obj, java.lang.String name)
This method is similar toObjects.requireNonNull()
.
-
-
-
Method Detail
-
checkNonNull
static void checkNonNull(java.lang.Object obj, java.lang.String name)
This method is similar toObjects.requireNonNull()
. But this one is available for JDK 1.6 which is the current target of args4j. I didn't want to break compatibility with JDK 1.6.- Parameters:
obj
- the object to check fornull
value.name
- the object name. Ifobj
isnull
, then an exception is constructed from this name.
-
-