I have a org.w3c.dom.Node object. I would like to see if it has any other siblings. Here's what I have tried:
Node sibling = node.getNextSibling(); if(sibling == null) return true; else ...