Java Integer to String intToStr(int nValue)

Here you can find the source of intToStr(int nValue)

Description

int To Str

License

Apache License

Declaration

public static String intToStr(int nValue) 

Method Source Code

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

public class Main {

    public static String intToStr(int nValue) {
        return new Integer(nValue).toString();
    }/*from   www  .j  ava 2s .  c  om*/

    public static String intToStr(long nValue) {
        return new Long(nValue).toString();
    }
}

Related

  1. int2String(Integer int_obj)
  2. int2Word(int val)
  3. integerToString(Integer i)
  4. integerToString(Integer number)
  5. integerToString(Integer value)
  6. intToStr(int priceInt)
  7. intToStr(int val)
  8. intToStr(int valor, int len)
  9. intToStr(int value)