Here you can find the source of toArrayClass(String className)
Parameter | Description |
---|---|
className | a class name |
public static String toArrayClass(String className)
//package com.java2s; //License from project: Open Source License public class Main { /**/*from ww w.j a v a 2 s.c o m*/ * Returns the array class name for the given class name. * * @param className a class name * @return the corresponding array class */ public static String toArrayClass(String className) { return "[L" + className + ";"; } }