D E G H I N R T 
All Classes All Packages

D

dequeue() - Method in class ic211.TweetQueue
Take frontmost value off the Queue and return it.

E

empty() - Method in class ic211.TweetQueue
This method is used to determine whether the Queue is empty.
enqueue(Tweet) - Method in class ic211.TweetQueue
Enqueue (add to back) Tweet into the Queue.

G

getDate() - Method in class ic211.Tweet
Get the date of the post in YYYY-MM-DD format.
getText() - Method in class ic211.Tweet
Get the message text of the Tweet.
getUserName() - Method in class ic211.Tweet
Get the user name of the poster.

H

hasNext() - Method in class ic211.TweetQueue.Iter
This method is used to determine whether the iterator has reached the end of the Queue.

I

ic211 - package ic211
 
Iter(TweetQueue.Node) - Constructor for class ic211.TweetQueue.Iter
 
iterator() - Method in class ic211.TweetQueue
This method returns and iterator set to the initial element of the Queue.

N

next() - Method in class ic211.TweetQueue.Iter
Returns the next Tweet in the Queue.

R

read(Scanner) - Static method in class ic211.Tweet
Reads data from a Scanner and creates & returns a Tweet from it.

T

toString() - Method in class ic211.Tweet
Returns a String representation of a Tweet in message-tab-user-tab-date format.
Tweet - Class in ic211
This class represents a single Tweet
Tweet(String, String, String) - Constructor for class ic211.Tweet
Constructs a Tweet object.
TweetQueue - Class in ic211
This class provides basic Queue functionality for Tweet objects.
TweetQueue() - Constructor for class ic211.TweetQueue
 
TweetQueue.Iter - Class in ic211
This class provides basic iterator functionality to iterate over the elements in the Queue without changing the Queue.
D E G H I N R T 
All Classes All Packages