twitter4j
Interface UserList

All Superinterfaces:
java.lang.Comparable<UserList>, java.io.Serializable, TwitterResponse
All Known Implementing Classes:
UserListJSONImpl

public interface UserList
extends java.lang.Comparable<UserList>, TwitterResponse, java.io.Serializable

A data interface representing Basic list information element

Author:
Dan Checkoway - dcheckoway at gmail.com
See Also:
REST API Documentation - Basic list information element

Method Summary
 java.lang.String getDescription()
          Returns the description of the list
 java.lang.String getFullName()
          Returns the full name of the list
 int getId()
          Returns the id of the list
 int getMemberCount()
          Returns the member count of the list
 java.lang.String getName()
          Returns the name of the list
 java.lang.String getSlug()
          Returns the slug of the list
 int getSubscriberCount()
          Returns the subscriber count of the list
 java.net.URI getURI()
          Returns the uri of the list
 User getUser()
          Returns the user of the list
 boolean isFollowing()
          Returns if the authenticated user is following the list
 boolean isPublic()
          tests if the list is public
 
Methods inherited from interface java.lang.Comparable
compareTo
 
Methods inherited from interface twitter4j.TwitterResponse
getRateLimitStatus
 

Method Detail

getId

int getId()
Returns the id of the list

Returns:
the id of the list

getName

java.lang.String getName()
Returns the name of the list

Returns:
the name of the list

getFullName

java.lang.String getFullName()
Returns the full name of the list

Returns:
the full name of the list

getSlug

java.lang.String getSlug()
Returns the slug of the list

Returns:
the slug of the list

getDescription

java.lang.String getDescription()
Returns the description of the list

Returns:
the description of the list

getSubscriberCount

int getSubscriberCount()
Returns the subscriber count of the list

Returns:
the subscriber count of the list

getMemberCount

int getMemberCount()
Returns the member count of the list

Returns:
the member count of the list

getURI

java.net.URI getURI()
Returns the uri of the list

Returns:
the uri of the list

isPublic

boolean isPublic()
tests if the list is public

Returns:
if the list is public

getUser

User getUser()
Returns the user of the list

Returns:
the user of the list

isFollowing

boolean isFollowing()
Returns if the authenticated user is following the list

Returns:
if the authenticated user is following the list