Example usage for com.google.gwt.lang LongLib toBase64

List of usage examples for com.google.gwt.lang LongLib toBase64

Introduction

In this page you can find the example usage for com.google.gwt.lang LongLib toBase64.

Prototype

public static String toBase64(long value) 

Source Link

Document

Return an optionally single-quoted string containing a base-64 encoded version of the given long value.

Usage

From source file:com.googlecode.gwt.serialization.JsonSerializationStreamWriter.java

License:Apache License

@Override
public void writeLong(long value) {
    encodeBuilder.insert(0, SEPARATOR + "'" + LongLib.toBase64(value) + "'");
}

From source file:com.seanchenxi.gwt.storage.client.serializer.StorageSerializationStreamWriter.java

License:Apache License

@Override
public void writeLong(long value) {
    append(APOSTROPHE + LongLib.toBase64(value) + APOSTROPHE);
}

From source file:com.threerings.nexus.io.ClientOutput.java

License:Open Source License

@Override
public void writeLong(long value) {
    append(LongLib.toBase64(value));
}