Java Long to String long2string(long longdata)

Here you can find the source of long2string(long longdata)

Description

longstring

License

Apache License

Parameter

Parameter Description
data a parameter

Declaration

public static String long2string(long longdata) 

Method Source Code

//package com.java2s;
/*/*from  ww w . ja v a 2s .com*/
 * Copyright 2008-2009 MOPAS(Ministry of Public Administration and Security).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License 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 {
    /**
     * @param data
     * @return
     */
    public static String long2string(long longdata) {
        return String.valueOf(longdata);
    }
}

Related

  1. long2sortableStr(long val)
  2. Long2Str(long i)
  3. long2String(final long ip)
  4. Long2String(final long value)
  5. long2string(long lng, StringBuilder buff)
  6. long2String(long x)
  7. long2StringForLen(long num, String str)
  8. long2Word(long val)
  9. LongToStr(long nValue)