Java Long Number Format formatLong(Long number)

Here you can find the source of formatLong(Long number)

Description

format Long

License

Open Source License

Declaration

public static final String formatLong(Long number) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {

    public static final String formatLong(Long number) {
        if (number == null) {
            number = 0L;/*from w w w.j a  va2 s  .c o m*/
        }

        return number.toString();
    }
}

Related

  1. format(long s)
  2. format(long seconds)
  3. format(Long value)
  4. format(long value)
  5. formatLong(long inLong, int inLen, boolean inComma, int inCommaPos)
  6. formatLong(long val, int size)
  7. formatLong(long value)
  8. formatLong(long value)
  9. formatLong(long value, int length)