Example usage for com.google.common.primitives UnsignedLong toString

List of usage examples for com.google.common.primitives UnsignedLong toString

Introduction

In this page you can find the example usage for com.google.common.primitives UnsignedLong toString.

Prototype

@Override
public String toString() 

Source Link

Document

Returns a string representation of the UnsignedLong value, in base 10.

Usage

From source file:org.calrissian.mango.types.encoders.simple.UnsignedLongEncoder.java

@Override
public String encode(UnsignedLong value) {
    checkNotNull(value, "Null values are not allowed");
    return value.toString();
}