Example usage for org.apache.commons.jxpath.ri.model NodeIterator interface-usage

List of usage examples for org.apache.commons.jxpath.ri.model NodeIterator interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.jxpath.ri.model NodeIterator interface-usage.

Usage

From source file org.geotools.xml.impl.jxpath.FeaturePropertyIterator.java

/**
 * 
 *
 * @source $URL$
 */
public class FeaturePropertyIterator implements NodeIterator {

From source file org.geotools.xml.impl.jxpath.FeatureTypeAttributeIterator.java

/**
 * A special iteartor for iteating over the attributes of a feature type.
 *
 * @author Justin Deoliveira, The Open Planning Project
 *
 *

From source file org.geotools.xml.impl.jxpath.SingleFeatureTypeAttributeIterator.java

/**
 * Iterates over a single attribute of a feature type.
 *
 * @author Justin Deoliveira, The Open Planning Project
 *
 *

From source file org.geotools.xml.impl.jxpath.SingleFeaturePropertyIterator.java

/**
 * Iterates over a single property of a feature.
 * <p>
 * Will "iterate" over fid if index is set to -1.
 * </p>
 *

From source file org.geotools.feature.xpath.XmlAttributeNodeIterator.java

/**
 * Special node iterator for {@link Attribute}.
 * 
 * @author Justin Deoliveira (The Open Planning Project)
 * @author Gabriel Roldan (Axios Engineering)
 * 

From source file org.geotools.feature.xpath.SingleFeatureTypeAttributeIterator.java

/**
 * Iterates over a single attribute of a feature type.
 * 
 * @author Niels Charlier (Curtin University of Technology)
 * 
 *

From source file org.geotools.feature.xpath.DescriptorXmlAttributeNodeIterator.java

/**
 * Special node iterator for {@link Attribute}.
 * 
 * @author Justin Deoliveira (The Open Planning Project)
 * @author Gabriel Roldan (Axios Engineering)
 * 

From source file org.geotools.feature.xpath.FeatureTypeAttributeIterator.java

/**
 * A special iterator for iterating over the attributes of a feature type.
 * 
 * @author Niels Charlier (Curtin University of Technology)
 * 
 *

From source file org.lilyproject.runtime.conf.jxpath.ConfNodeIterator.java

public class ConfNodeIterator implements NodeIterator {
    private NodePointer parent;
    private int position = 0;
    private List<Conf> children = new ArrayList<Conf>();

    /**

From source file org.lilyproject.runtime.conf.jxpath.ConfAttributeIterator.java

public class ConfAttributeIterator implements NodeIterator {
    private NodePointer parent;
    private List<Map.Entry<String, String>> attributes = new ArrayList<Map.Entry<String, String>>();
    private int position = 0;

    /**