The Object class has a toString() that is inherited by every Class in Java (since very class derives from Object). This toString() will be called (unless it is overridden, in which case that particular object's overridden toString() will be called).
There is nothing you can do to prevent this from happening.
On another note, what does your method look like? If you have public myMethod(String arg) and you call myMethod(new FileEntry()), I'm pretty sure that results in a compile-time error.
Of course, if you have an overloaded method that has Object arg as a parameter, then that's the method that will be called. Internally, this method is probably calling toString() on arg. Also, using an object that is not a string in a string context (for example, if you concatenate it to a string), results in an implicit call to that object's toString() (which can be the overridden one, or the default from from Object).
To get a prettier result from toString(), you should override toString() in the FileEntry class so that it prints something that makes more sense.