All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thoughtworks.xstream.io.HierarchicalStreamReader Maven / Gradle / Ivy

package com.thoughtworks.xstream.io;

import com.thoughtworks.xstream.converters.ErrorWriter;

import java.util.Iterator;

/**
 * @author Joe Walnes
 */
public interface HierarchicalStreamReader {

    /**
     * Does the node have any more children remaining that have not yet been read?
     */
    boolean hasMoreChildren();

    void moveDown();

    void moveUp();

    /**
     * Get the name of the current node.
     */
    String getNodeName();

    /**
     * Get the value (text content) of the current node.
     */
    String getValue();

    /**
     * Get the value of an attribute of the current node.
     */
    String getAttribute(String name);

    /**
     * Get the value of an attribute of the current node, by index.
     */
    String getAttribute(int index);
    
    /**
     * Number of attributes in current node.
     */
    int getAttributeCount();

    /**
     * Name of attribute in current node.
     */
    String getAttributeName(int index);

    /**
     * Names of attributes (as Strings). 
     */
    Iterator getAttributeNames();

    /**
     * If any errors are detected, allow the reader to add any additional information that can aid debugging
     * (such as line numbers, XPath expressions, etc).
     */
    void appendErrors(ErrorWriter errorWriter);

    /**
     * Close the reader, if necessary.
     */
    void close();

    /**
     * Return the underlying HierarchicalStreamReader implementation.
     *
     * 

If a Converter needs to access methods of a specific HierarchicalStreamReader implementation that are not * defined in the HierarchicalStreamReader interface, it should call this method before casting. This is because * the reader passed to the Converter is often wrapped/decorated by another implementation to provide additional * functionality (such as XPath tracking).

* *

For example:

*
MySpecificReader mySpecificReader = (MySpecificReader)reader; // INCORRECT!
     * mySpecificReader.doSomethingSpecific();
*
MySpecificReader mySpecificReader = (MySpecificReader)reader.underlyingReader();  // CORRECT!
     * mySpecificReader.doSomethingSpecific();
* *

Implementations of HierarchicalStreamReader should return 'this', unless they are a decorator, in which case * they should delegate to whatever they are wrapping.

*/ HierarchicalStreamReader underlyingReader(); /** * @deprecated This method should not be used and is only provided for backwards compatability. * As of XStream 1.1.1, you can use the {@link #underlyingReader()} method to get the underlying * reader implementation and call implementation specific methods on that. */ Object peekUnderlyingNode(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy