To create a non heritable class in java declare the class as final using final keyword in front of class declaration . Final class cannot be inherited. To create a non overridable method decalre the method private or final. Both the keyword final and private avoid prevent a method from being overridden.