Package | Description |
---|---|
student.weblog |
This package provides all of the course-specific classes based
on the web log analyzer example from Chapter 4
of Objects First with Java by Michael Kolling
and David Barnes.
|
Modifier and Type | Method and Description |
---|---|
LogEntry |
LogScanner.next()
Analyze the next line from the log file and
make it available via a LogEntry object.
|
LogEntry |
LogScanner.nextEntry()
A synonym for
LogScanner.hasNext() provided for backward
compatibility with the older Java 1.4-style LogReader
class. |
LogEntry |
LogReader.nextEntry()
Analyze the next line from the log file and
make it available via a LogEntry object.
|
Modifier and Type | Method and Description |
---|---|
Iterator<LogEntry> |
LogScanner.iterator()
Return this object, unchanged, to provide support for foreach-style
loops.
|