This is Intellij debugger's way of displaying a "unique identifier" for an object. It consists of the short classname and a unique number. The unique number seems to be generated using a simple counter, so the "meaning" of 729 in Owner@729
is (presumably) "this is the 729th object that the debugger has allocated an identifier for". However, you probably shouldn't rely on that.
There is no overt relationship between these numbers and Java identity hashcode values, though I expect Intellij maintains a mapping behind the scenes.
The Owner@5f9d02cb
in the screenshot is reminiscent of the result of Object::toString
... when it hasn't been overridden. If that it is what it is, then the 5f9d02cb
will be the object's identity hashcode.