Example usage for twitter4j SavedSearch getPosition

List of usage examples for twitter4j SavedSearch getPosition

Introduction

In this page you can find the example usage for twitter4j SavedSearch getPosition.

Prototype

int getPosition();

Source Link

Usage

From source file:de.jetwick.data.UserSearch.java

License:Apache License

public UserSearch(SavedSearch ss) {
    position = ss.getPosition();
    query = ss.getQuery();
    id = ss.getId();
}