final.
By convention constant names are uppercase, and words within the name
are separated by underscores.
int
constant FOUL, we don't have to worry about what integer it
actually refers to, and if this integer is changed in the program at some
time, it won't affect anything else in the program as long as reference
is made to the constant.
static.
A static variable or constant
in another class (if it is public) can be accessed using
the class name and the dot operator, for example, Beh.FOUL.
FOUL in
the class Beh looks like: