D G M P R S T

D

distanceFrom(Point) - Method in class Point
Determine the distance between two points
distanceFromOrigin() - Method in class Point
Determine the distance between the origin and the point.

G

getCentimeters() - Method in class Measurement
Get the measurement in centimeters.
getFeet() - Method in class Measurement
Get the measurement in feet.
getHours() - Method in class TimeCounter
If the elapsed time was written in HH:MM:SS.T form (where HH==hours, MM==minutes, SS==seconds, and T==10ths of seconds), this method returns the number of hours (or HH above).
getInches() - Method in class Measurement
Get the measurement in inches.
getMeters() - Method in class Measurement
Get the measurement in meters.
getMinutes() - Method in class TimeCounter
If the elapsed time was written in HH:MM:SS.T form (where HH==hours, MM==minutes, SS==seconds, and T==10ths of seconds), this method returns the number of minutes (or MM above).
getSeconds() - Method in class TimeCounter
If the elapsed time was written in HH:MM:SS.T form (where HH==hours, MM==minutes, SS==seconds, and T==10ths of seconds), this method returns the number of seconds (or SS above).
getTime() - Method in class TimeCounter
Get the elapsed time in 10ths of a second.
getTSeconds() - Method in class TimeCounter
If the elapsed time was written in HH:MM:SS.T form (where HH==hours, MM==minutes, SS==seconds, and T==10ths of seconds), this method returns the number of 10ths of seconds (or T above).
getX() - Method in class Point
Retrieve the X coordinate of the point.
getY() - Method in class Point
Retrieve the Y coordinate of the point.

M

Measurement - class Measurement.
A class that stores measurements.
Measurement() - Constructor for class Measurement
Create a Measurement that is initialized to 0.
Measurement(double) - Constructor for class Measurement
Create a Measurement set to a specified number of inches.

P

Point - class Point.
This class defines points on a standard Cartesian (XY) plane.
Point() - Constructor for class Point
Create a point at the origin (x = y = 0).
Point(double, double) - Constructor for class Point
Create a point at the specified coordinate.

R

reset() - Method in class TimeCounter
Resets the elapsed time to 0.

S

setCentimeters(double) - Method in class Measurement
Set the measurement in centimeters.
setFeet(double) - Method in class Measurement
Set the measurement in feet.
setInches(double) - Method in class Measurement
Set the measurement in inches.
setMeters(double) - Method in class Measurement
Set the measurement in meters.
setTime(int) - Method in class TimeCounter
Set the elapsed time.
setX(double) - Method in class Point
Change the X coordinate of the point.
setY(double) - Method in class Point
Change the Y coordinate of the point.

T

tick() - Method in class TimeCounter
Add a 10th of a second to the elapsed time.
TimeCounter - class TimeCounter.
This class stores elapsed time.
TimeCounter() - Constructor for class TimeCounter
Create a TimeCounter that is initialized to 0.
TimeCounter(int) - Constructor for class TimeCounter
Create a TimeCounter set to a specified value.

D G M P R S T