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

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

Introduction

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

Prototype

public BigInteger bigIntegerValue() 

Source Link

Document

Returns the value of this UnsignedLong as a BigInteger .

Usage

From source file:com.google.api.client.json.jackson.JacksonGenerator.java

@Override
public void writeNumber(UnsignedLong v) throws IOException {
    generator.writeNumber(v.bigIntegerValue());
}