我的 GPathResult 可以通过以下 3 种方式之一拥有名称节点
1)名称节点存在并具有值ex:John
2) 名称节点存在,但其中没有值。
3) 根本不存在名称节点。
在 Groovy 代码中,我如何使用我的 Gpathresult 区分上述 3 种情况。我是否使用类似 gPathResult 的东西。值()!=空?
伪代码:
if(name node is present and has a value){
do this
}
if(name node exists, but has no value in it){
do this
}
if( No name node exists at all){
do this
}