Simply call them by appending a .
subClass.superClassMethods();
Define a method with the same name in the subclass with @Override place above it.
public Cat extends Animal {
// code
@Override
public void speak() {
System.out.println("meow");
}
}