Java Integer Format formatInt64(long val)

Here you can find the source of formatInt64(long val)

Description

format Int

License

LGPL

Declaration

public static String formatInt64(long val) 

Method Source Code

//package com.java2s;
/*/*from w ww. jav  a 2  s  . c  o  m*/
 *  MSS Code Factory CFLib 2.1
 *
 *   Copyright (c) 2014-2015 Mark Sobkow
 *   
 *   This program is available as free software under the GNU LGPL v3, or
 *   under a commercial license from Mark Sobkow.  For commercial licensing
 *   details, please contact msobkow@sasktel.net.
 *
 *   Under the terms of the LGPL:
 *   
 *      This program is free software: you can redistribute it and/or modify
 *      it under the terms of the GNU Lesser General Public License as
 *      published by the Free Software Foundation, either version 3 of
 *      the License, or (at your option) any later version.
 *     
 *      This program is distributed in the hope that it will be useful,
 *      but WITHOUT ANY WARRANTY; without even the implied warranty of
 *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *      GNU Lesser General Public License for more details.
 *     
 *      You should have received a copy of the GNU Lesser General Public
 *      License along with this program.  If not,
 *      see http://www.gnu.org/licenses/.
 */

public class Main {
    public static String formatInt64(long val) {
        String retval = Long.toString(val);
        return (retval);
    }
}

Related

  1. formatInt(int value, int width)
  2. formatInt(String value)
  3. formatInt(String value)
  4. formatInt(String value, int defaultValue)
  5. formatInt2(int n)
  6. formatIntAsDottedOctet(int value)
  7. formatIntAsIpAddress(final int address)
  8. formatInteger(byte[] btValue, int iOffset, int iLength)
  9. formatInteger(int i, int j)