Java Integer Convert To convertInternalFormToQualifiedClassName( final String classInternalName)

Here you can find the source of convertInternalFormToQualifiedClassName( final String classInternalName)

Description

Helper method that converts from the internal class name format (as used in the Constant Pool) to a fully-qualified class name.

License

Apache License

Parameter

Parameter Description
classInternalName a parameter

Declaration

public static String convertInternalFormToQualifiedClassName(
        final String classInternalName) 

Method Source Code

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

public class Main {
    /**/*from  w w w. j  a va2  s  .co m*/
     * Helper method that converts from the internal class name format (as used in the
     * Constant Pool) to a fully-qualified class name. No obvious library method to do this
     * appears to exist, hence this code. If one exists, rip this out.
     * @param classInternalName
     * @return
     */
    public static String convertInternalFormToQualifiedClassName(
            final String classInternalName) {
        String out = classInternalName.replaceAll("/", "\\.");
        return out;
    }
}

Related

  1. convertIntegerArrayToInt(Integer[] integerArray)
  2. convertIntegerToInt(Integer[] values)
  3. convertIntegerToTwoCharString(int integer)
  4. convertInteralNameToResourceName(String type1)
  5. convertInternalClassNameToQualifiedName(String className)
  6. convertIntFromBytes(byte[] byteArray)
  7. convertIntfwl(String[] idArray)
  8. convertIntList(Integer[] list)
  9. convertIntoRange(Integer inValue, int inSteps, int inMin, int inMax)