summaryrefslogtreecommitdiff
path: root/src/Chapter2/support/InfoType.java
blob: 42b0334de8a1ba8d801e29a6ef6058812c3d66b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* TweetTracker. Copyright (c) Arizona Board of Regents on behalf of Arizona State University
 * @author shamanth
 */
package Chapter2.support;

public class InfoType
{
    public static final int PROFILE_INFO = 0;
    public static final int FOLLOWER_INFO = 1;
    public static final int FRIEND_INFO = 2;
    public static final int STATUSES_INFO = 3;
}