Example usage for com.google.common.collect DiscreteDomain bigIntegers

List of usage examples for com.google.common.collect DiscreteDomain bigIntegers

Introduction

In this page you can find the example usage for com.google.common.collect DiscreteDomain bigIntegers.

Prototype

public static DiscreteDomain<BigInteger> bigIntegers() 

Source Link

Document

Returns the discrete domain for values of type BigInteger .

Usage

From source file:io.prestosql.plugin.hive.parquet.AbstractTestParquetReader.java

private static ContiguousSet<BigInteger> bigIntegersBetween(BigInteger lowerInclusive,
        BigInteger upperExclusive) {
    return ContiguousSet.create(Range.closedOpen(lowerInclusive, upperExclusive), DiscreteDomain.bigIntegers());
}