Bellow the three use of the final keywords
A final class can’t be extended i.e. A final class may not be subclassed.
A final method can’t be overridden when its class is inherited.
can’t change value of a final variable (i.e. it is a constant).