- CellNumber - Class in test3
-
A class that represents North American cell phone numbers.
- CellNumber(int, int, int) - Constructor for class test3.CellNumber
-
Initialize this cell number given its area code, its exchange code, and
its station code.
- CellNumber(CellNumber) - Constructor for class test3.CellNumber
-
Initialize this cell number by copying the area, exchange, and
station codes of another cell number.
- CellPhone - Class in test3
-
A class that represents a cell phone.
- CellPhone() - Constructor for class test3.CellPhone
-
Initializes this cell phone to have a valid cell number.
- CellPhone(CellNumber) - Constructor for class test3.CellPhone
-
Initializes this cell phone given its cell number.
- CellPhone(CellNumber, List<CellNumber>) - Constructor for class test3.CellPhone
-
Initializes this cell phone given a cell number and a call log.
- compareTo(CellNumber) - Method in class test3.CellNumber
-
Compares two cell numbers for order.