Class ArrayUtil


  • public class ArrayUtil
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      ArrayUtil()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String[] arrayToStringArray​(java.lang.Object primitiveArray)
      Converts the given array of values to an array of String values, using null for the null value, and using the toString method for Object types, using the toString method of the corresponding boxed type for primitive values.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ArrayUtil

        public ArrayUtil()
    • Method Detail

      • arrayToStringArray

        @Nonnull
        public static java.lang.String[] arrayToStringArray​(@Nonnull
                                                            java.lang.Object primitiveArray)
        Converts the given array of values to an array of String values, using null for the null value, and using the toString method for Object types, using the toString method of the corresponding boxed type for primitive values.