A specifier that can only be used on classes and members of classes:
When a class has the final specifier, you cannot create a subclass of the class.
When a field has the final specifier, you cannot override the field in a subclass.
When a method has the final specifier, you cannot override the method in a subclass.