Here you can find the source of classNameWithType(String className, String type)
public static String classNameWithType(String className, String type)
//package com.java2s; //License from project: Apache License public class Main { public static String classNameWithType(String className, String type) { return className + type; }/* w w w .ja v a 2 s . c o m*/ }