Java Long Number Convert To fromLong(Long value)

Here you can find the source of fromLong(Long value)

Description

from Long

License

Open Source License

Declaration

public static String fromLong(Long value) 

Method Source Code

//package com.java2s;
/*/*  w  w w  . j av a2  s. c  o  m*/
 * Copyright 2010 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 * 
 *  http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

public class Main {
    public static String fromLong(Long value) {
        return Long.toString(value);
    }

    public static String toString(StringBuilder value) {
        return value.toString();
    }
}

Related

  1. fromLong(long d)
  2. fromLong(long input)
  3. fromLong(long key)
  4. fromLong(long longValue)
  5. fromLong(long v, int offset, byte[] dest)
  6. fromLong(long value)
  7. fromLong(long value, int numBytes)
  8. fromLong(long x)
  9. fromLongString(String longString)