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

lux.index.analysis.EmptyXdmIterator Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package lux.index.analysis;

import net.sf.saxon.om.SequenceIterator;
import net.sf.saxon.s9api.XdmItem;
import net.sf.saxon.s9api.XdmSequenceIterator;

class EmptyXdmIterator extends XdmSequenceIterator {

    protected EmptyXdmIterator(SequenceIterator base) {
      super(base);
    }
        
    @Override
    public boolean hasNext () {
      return false;
    }
        
    @Override
    public XdmItem next () {
      return null;
    }
        
  }

/*
 * This Source Code Form is subject to the terms of the Mozilla Public License,
 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
 * obtain one at http://mozilla.org/MPL/2.0/.
 */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy