Final
to class
It's not that all references to objects of the class would act as if they where declared as final. A final class is simply a class that can't be extended.
It's useful if you for instance write a class which you intend to be immutable. (String does this for instance.) You do it mainly for efficiency and security reasons.