public List getPointerParts()

in src/main/java/org/apache/maven/xinclude/stax/XPointer.java [91:97]


    public List<PointerPart> getPointerParts() {
        if (hasPointerParts()) {
            return Collections.unmodifiableList(pointerParts);
        } else {
            throw new IllegalStateException("This XPointer has a shorthand pointer.");
        }
    }