What is the use of final keyword in java?
final keyword in java is used to restrict the modification of a class or a method or a variable. A final class can not be extended, a final method can not be overridden and we can not change the value of a final variable.
More on the final keyword
https://javaconceptoftheday.com/final-keyword-in-java/