C D G I M R T

C

Counter - Class in <Unnamed>
Class to represent an integer counter.
Counter(int, int) - Constructor for class Counter
Create Counter with specified initial value and maximum.
Counter(int) - Constructor for class Counter
Create Counter with initial value MINIMUM and specified maximum.

D

decrement() - Method in class Counter
Decrement counter value.

G

getCount() - Method in class Counter
Retrieve current counter value.

I

increment() - Method in class Counter
Increment counter value.
isAtMaximum() - Method in class Counter
Test whether or not counter is at maximum value.
isAtMinimum() - Method in class Counter
Test whether or not counter is at minimum value (MINIMUM).

M

MINIMUM - Static variable in class Counter
Minimum value of the counter (0).

R

reset() - Method in class Counter
Reset counter to MINIMUM.

T

toString() - Method in class Counter
Produce and return String representation of counter value.

C D G I M R T