Class ConfigUtil

java.lang.Object
com.sun.jini.config.ConfigUtil

public class ConfigUtil extends Object
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 Details

    • concat

      public static String concat(Object[] objects)
      Concatenate the strings resulting from calling String.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.valueOf on each element of objects.
      Throws:
      NullPointerException - if objects is null.