Example usage for com.google.gwt.user.server Base64Utils longFromBase64

List of usage examples for com.google.gwt.user.server Base64Utils longFromBase64

Introduction

In this page you can find the example usage for com.google.gwt.user.server Base64Utils longFromBase64.

Prototype

public static long longFromBase64(String value) 

Source Link

Document

Decode a base64 string into a long value.

Usage

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

License:Open Source License

@Override
public long readLong() {
    return Base64Utils.longFromBase64(_valiter.next());
}