Package com.nedap.archie.query
Class APathQuery
- java.lang.Object
-
- com.nedap.archie.query.APathQuery
-
public class APathQuery extends java.lang.ObjectFor now only accepts rather simple xpath-like expressions. The only queries fully supported at the moment are absolute queries with node ids, such as '/items[id1]/content[id2]/value'. Any expression after the ID-code, such as in '[id1 and name="ignored"] are currently ignored, but they parse and function as long as you add the id-code as first part of the expression. Created by pieter.bos on 19/10/15.
-
-
Constructor Summary
Constructors Constructor Description APathQuery(java.lang.String query)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<PathSegment>getPathSegments()java.lang.StringtoString()
-
-
-
Method Detail
-
getPathSegments
public java.util.List<PathSegment> getPathSegments()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-