All Classes and Interfaces

Class
Description
Represents a "movie" record.
Sample data related to movies.
Represents a movie genre.
Represents a function that accepts one Movie argument and produces a result.
Represents a "member" record.
Implementations of Comparable<Movie> that impose various orderings.
A node for an item in a linked list data structure.
An "oracle" implementation of UrgencyQueue that uses a linked list of Node objects to maintain its "line" of items and requires a Comparator Constructor Parameter so that it can compare items.
An "oracle" implementation of UrgencyQueue that uses a linked list of Node objects to maintain its "line" of items and imposes a Comparable Upper Bound so that it can compare items.
An "oracle" implementation of Queue with FIFO semantics that uses a linked list of Node objects to maintain its "line" of items.
Represents a "person" record with an age and name.
Sample data related to people.
Represents a function that accepts one Person argument and produces a result.
Implementations of Comparable<Person> that impose various orderings.
Queue<T,Q extends Queue<T,Q>>
Represents a standard queue.
An abstract data type that defines urgency-based queue operations.