Having previously posted EclipseLink MOXy @XmlPath support for axes/parent
I'm still working with @XmlPath annotation and it appears to me predicate inequality isn't supported?
@XmlPath("node[@attr != 'a']")
Also valid for me would be to check for the existance of an attribute
@XmlPath("node[@x]")
Or even better, that it doesn't exist
@XmlPath("node[not(@x)]")
Is there a heavy cost introducing these features? I'm used to having the whole XPath array of features available. MOXy has provided me some fantastic functionality I'm very grateful for, but it seems a little inflexible in this regard.