I know it is not a good coding practice to declare a method as private in an abstract class. Even though we cannot create an instance of an
private
abstract
The method can be accessed only from within the abstract class. For example, you could have an abstract class with a public final method that makes use of a private helper method.
public final