public boolean isWhitespace()

in src/main/java/org/apache/maven/xinclude/stax/StreamReaderDelegate.java [84:92]


    public boolean isWhitespace() throws XMLStreamException {
        if (getEventType() == CHARACTERS || getEventType() == CDATA) {
            return WHITESPACE_REGEX.matcher(getText()).matches();
        } else if (getEventType() == SPACE) {
            return true;
        } else {
            throw new XMLStreamException("no content available to check for whitespaces");
        }
    }