Never write `thing instanceof Thing`. Always use duck typing to check if the thing has the properties/methods you need! (… or `Thing.isThing()`)
Never write
thing instanceof Thing.Always use duck typing to check if the thing has the properties/methods you need!
(… or
Thing.isThing())