Private access modifier is the most restrictive access level. Class and interfaces cannot be private.
Example:
public class Logger {
private String format;
public String getFormat() {
...