Java Array Dump dump_strarr(String[] arr, String doc)

Here you can find the source of dump_strarr(String[] arr, String doc)

Description

dumstrarr

License

Apache License

Declaration

public static void dump_strarr(String[] arr, String doc) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static void dump_strarr(String[] arr, String doc) {
        System.out.println(doc);/*from w  ww .  j a  va2  s  . co  m*/
        for (int i = 0; i < arr.length; i++) {
            System.out.println("(" + i + ") " + arr[i]);
        }
    }
}

Related

  1. dump(final StringBuilder buffer, final byte[] data, final int offset, final int length)
  2. dump(String name, byte[] in)
  3. dump(String t, String[] arr)
  4. dump(T[] from, T[] to)
  5. dump_octets(byte[] oct)
  6. dumpArray(final float[] array, final int maxElemsPerLine)
  7. dumpArray(String msg, float[][] A, int x1, int x2, int y1, int y2)
  8. dumpArray(String msg, Object[] refs)
  9. dumpArray(T[] ts)