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

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

Introduction

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

Prototype

@CheckReturnValue
public UnsignedLong plus(UnsignedLong val) 

Source Link

Document

Returns the result of adding this and val .

Usage

From source file:org.opendaylight.controller.md.sal.dom.store.impl.tree.StoreUtils.java

public static final UnsignedLong increase(final UnsignedLong original) {
    return original.plus(UnsignedLong.ONE);
}