Here you can find the source of getClassName(Integer typeValue)
public static final String getClassName(Integer typeValue)
//package com.java2s; //License from project: Apache License import java.util.HashMap; import java.util.Map; public class Main { private static final Map<Integer, String> CONVERT_TYPE_MAP = new HashMap<Integer, String>(); public static final String getClassName(Integer typeValue) { return CONVERT_TYPE_MAP.get(typeValue); }/*w w w . ja v a 2 s.c o m*/ }