How do you access a class method in Java?
methodName();
ClassName->methodName();
ClassName.methodName();
objectName.methodName();