A B C D E G I M P R T

A

add(int) - Method in class EasyDate
Returns a new EasyDate that is numDays later than this date (or earlier, if numDays is negative).

B

bad() - Method in class EasyReader
Checks the status of the file.
bad() - Method in class EasyWriter
Checks the status of the file.

C

close() - Method in class EasyReader
Closes the file.
close() - Method in class EasyWriter
Closes the file.
compareTo(EasyDate) - Method in class EasyDate
Compares this date to other.

D

daysTo(EasyDate) - Method in class EasyDate
Returns the number of days from this date to other.

E

EasyDate - Class in <Unnamed>
 
EasyDate() - Constructor for class EasyDate
Constructs a date for the current month, day, and year.
EasyDate(int, int, int) - Constructor for class EasyDate
Constructs a date for given month, day, and year.
EasyDate(EasyDate) - Constructor for class EasyDate
Constructs a date equal to a given date.
EasyDemo - Class in <Unnamed>
 
EasyDemo() - Constructor for class EasyDemo
 
EasyReader - Class in <Unnamed>
 
EasyReader() - Constructor for class EasyReader
Constructs an EasyReader associated with System.in.
EasyReader(String) - Constructor for class EasyReader
Constructs an EasyReader associated with a file for reading.
EasySound - Class in <Unnamed>
 
EasySound(String) - Constructor for class EasySound
Constructs an EasySound for a given audio file.
EasyWriter - Class in <Unnamed>
 
EasyWriter(String) - Constructor for class EasyWriter
Constructs an EasyWriter associated with a new file (or truncates an existing file).
EasyWriter(String, String) - Constructor for class EasyWriter
Constructs an EasyWriter that can append data to an existing file.
eof() - Method in class EasyReader
Checks the EOF status of the file.
equals(Object) - Method in class EasyDate
Checks whether this date id equal to other.

G

getDay() - Method in class EasyDate
Returns the day of this EasyDate.
getMonth() - Method in class EasyDate
Returns the month of this EasyDate.
getYear() - Method in class EasyDate
Returns the year of this EasyDate.

I

isLeapYear(int) - Static method in class EasyDate
Checks whether a given year is a leap year.

M

main(String[]) - Static method in class EasyDemo
 
MILLIS_DAY - Static variable in class EasyDate
Number of milliseconds in 24 hours.

P

play() - Method in class EasySound
Plays this EasySound.
print(char) - Method in class EasyWriter
Writes one character to the file.
print(int) - Method in class EasyWriter
Writes an integer to the file.
print(double) - Method in class EasyWriter
Writes a double to the file.
print(String) - Method in class EasyWriter
Writes a string to the file.
print(Object) - Method in class EasyWriter
Writes an object to the file.
printf(String, Object...) - Method in class EasyWriter
A convenience method to write a formatted string to this EasyWriter using the specified format string and parameters.
println() - Method in class EasyWriter
Writes a newline character to the file.
println(char) - Method in class EasyWriter
Writes one character and newline to the file.
println(int) - Method in class EasyWriter
Writes an integer and newline to the file.
println(double) - Method in class EasyWriter
Writes a double and newline to the file.
println(String) - Method in class EasyWriter
Writes a string and newline to the file.
println(Object) - Method in class EasyWriter
Writes an object and newline to the file.

R

readChar() - Method in class EasyReader
Reads the next character from the file (any character including a space or a newline character).
readDouble() - Method in class EasyReader
Reads the next double (without validating its format).
readInt() - Method in class EasyReader
Reads the next integer (without validating its format).
readLine() - Method in class EasyReader
Reads from the current position in the file up to and including the next newline character.
readWord() - Method in class EasyReader
Skips whitespace and reads the next word (a contiguous string of non-whitespace characters), up to but excluding the next space, newline, etc.

T

toString() - Method in class EasyDate
Returns this date as a string in the mm/dd/yyyy format.

A B C D E G I M P R T