Package com.sun.jini.config
Class ConfigUtil
java.lang.Object
com.sun.jini.config.ConfigUtil
A set of static convenience methods for use in configuration files. This class cannot be
instantiated.
- Since:
- 2.0
- Author:
- Sun Microsystems, Inc.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic StringConcatenate the strings resulting from callingString.valueOf(Object)on each element of an array of objects.
-
Method Details
-
concat
Concatenate the strings resulting from callingString.valueOf(Object)on each element of an array of objects. Passing a zero length array will result in the empty string being returned.- Parameters:
objects- the array of objects to be processed.- Returns:
- the concatenation of the return values from calling
String.valueOfon each element ofobjects. - Throws:
NullPointerException- ifobjectsisnull.
-