In Java, is a Constructor also a Method?
Looking at Oracle's definition of a Method it states that it needs the 6 components, including a return type. https://docs.oracle.com/javase/tutorial/java/javaOO/methods.html
Additionally Oracle's definition of a Constructor states in the second sentence that they "look like methods", doesn't state that they are. https://docs.oracle.com/javase/tutorial/java/javaOO/constructors.html
I've been told both throughout my time using Java and school. I'm not a beginner to say in Java, but this question should be an essential to the language when it comes to documentation/specifications.
I'm just looking for technical information to back either or.