Package com.luciad.format.xml.bind
Class TLcdXMLXPathConstants
java.lang.Object
com.luciad.format.xml.bind.TLcdXMLXPathConstants
This class provides two additional constants that can be used when working with
XPathExpression
instances working on Luciad domain objects.- Since:
- 9.0
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final QName
When this name is used, the result of evaluating the XPath expression will be the first domain object that matches the expression.static final QName
When this name is used, the result of evaluating the XPath expression will be a list (instance of java.util.List) of domain objects. -
Method Summary
-
Field Details
-
DOMAIN_OBJECT_SET
When this name is used, the result of evaluating the XPath expression will be a list (instance of java.util.List) of domain objects. -
DOMAIN_OBJECT
When this name is used, the result of evaluating the XPath expression will be the first domain object that matches the expression.
-