In Java Constructors are not polymorphic.
When you are dealing with already constructed class, you could be handling a declared type of the object, or any of its sub classes.
In Java a constructor is always called on the specific type,eg new String(). A hypothetical subclasses have no role in this.