Well, I'm not exactly where you're at, so it's rather pointless to try your coords.
Also, post more of the script. One line doesn't really help us in helping you much.
Here's another filter if @@Khaleesi's didn't work out for you.
Entity doors = objects.getAll().stream().filter(n -> n.getName().equals("Door") && n.getX() == 1234 && n.getY() == 1234 && n.getModel().equals(1234)).findFirst().get();
You can put in x, y coords, add in model number if it's a different object, or you can remove that part and simply change the getname string.