import org.jetbrains.annotations.NotNull; public class Book implements Comparable { @Override public int compareTo(@NotNull Book o) { return 0; } }