Example usage for java.lang Byte toString

List of usage examples for java.lang Byte toString

Introduction

In this page you can find the example usage for java.lang Byte toString.

Prototype

public String toString() 

Source Link

Document

Returns a String object representing this Byte 's value.

Usage

From source file:ca.oson.json.Oson.java

private String byte2JsonDefault(FieldData objectDTO) {
    Byte valueToReturn = json2ByteDefault(objectDTO);

    if (valueToReturn == null) {
        return null;
    }//from   ww w .j  av a  2 s.com

    return valueToReturn.toString();
}