Example usage for twitter4j Query getSinceId

List of usage examples for twitter4j Query getSinceId

Introduction

In this page you can find the example usage for twitter4j Query getSinceId.

Prototype

public long getSinceId() 

Source Link

Document

returns sinceId

Usage

From source file:com.github.moko256.mastodon.MTRangeConverter.java

License:Apache License

public static Range convert(Query query) {
    return new Range(convertLong(query.getMaxId()), convertLong(query.getSinceId()),
            (query.getCount() == -1) ? 0 : query.getCount());
}