Package | Description |
---|---|
examples.nntp | |
org.apache.commons.net.nntp |
NNTP - network news transfer protocol
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<Article> |
NNTPUtils.getArticleInfo(NNTPClient client,
long lowArticleNumber,
long highArticleNumber)
Given an
NNTPClient instance, and an integer range of messages, return
an array of Article instances. |
Modifier and Type | Field and Description |
---|---|
Article |
Article.kid |
Article |
Article.next |
Modifier and Type | Method and Description |
---|---|
(package private) static Article |
NNTPClient.__parseArticleEntry(java.lang.String line)
Parse a response line from
NNTPClient.retrieveArticleInfo(long, long) . |
Article |
ArticleIterator.next()
Get the next Article
|
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<Article> |
NNTPClient.iterateArticleInfo(long lowArticleNumber,
long highArticleNumber)
Return article headers for all articles between lowArticleNumber
and highArticleNumber, inclusively, using the XOVER command.
|
java.util.Iterator<Article> |
ArticleIterator.iterator() |
Modifier and Type | Method and Description |
---|---|
static void |
Article.printThread(Article article)
Recursive method that traverses a pre-threaded graph (or tree)
of connected Article objects and prints them out.
|
static void |
Article.printThread(Article article,
int depth)
Recursive method that traverses a pre-threaded graph (or tree)
of connected Article objects and prints them out.
|
static void |
Article.printThread(Article article,
int depth,
java.io.PrintStream ps)
Recursive method that traverses a pre-threaded graph (or tree)
of connected Article objects and prints them out.
|
static void |
Article.printThread(Article article,
java.io.PrintStream ps)
Recursive method that traverses a pre-threaded graph (or tree)
of connected Article objects and prints them out.
|