Example usage for javax.xml.bind DatatypeConverter printLong

List of usage examples for javax.xml.bind DatatypeConverter printLong

Introduction

In this page you can find the example usage for javax.xml.bind DatatypeConverter printLong.

Prototype

public static String printLong(long val) 

Source Link

Document

Converts A long value into a string.

Usage

From source file:org.openestate.io.kyero.KyeroUtils.java

public static String printPriceType(Long value) {
    return (value != null) ? DatatypeConverter.printLong(value) : "x";
}