Java Integer Convert To fromInternalForm(String internalForm)

Here you can find the source of fromInternalForm(String internalForm)

Description

from Internal Form

License

BSD License

Declaration

public static String fromInternalForm(String internalForm) 

Method Source Code

//package com.java2s;
/**/*from ww w . j a v  a2s  .c  o m*/
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

public class Main {
    public static String fromInternalForm(String internalForm) {
        return internalForm.replace('/', '.');
    }
}

Related

  1. fromInteger(int value)
  2. fromInteger(Integer value)
  3. fromInteger(Integer value, String defaultValue)
  4. fromIntegers(Integer[] values, String defaultValue)
  5. fromIntegerString(String integerString)
  6. fromIntLong(byte[] value)
  7. fromInts(int[] values)
  8. fromIntString(Object obj)
  9. fromIntWithPrefix(byte prefix, int v)