I was reviewing the nuances of overloading methods, and I came across the paragraph in the Oracle docs:
The Java programming language supports overloading methods, and Java can distinguish between methods with different method signatures. This means that methods within a class can have the same name if they have different parameter lists (there are some qualifications to this that will be discussed in the lesson titled "Interfaces and Inheritance").
Last week I read the entire Oracle lesson on Interfaces and Inheritance Interfaces, and I don't remember reading about this. What are the qualifications?