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

org.jcamp.parser.IStringIterator Maven / Gradle / Ivy

Go to download

The JCAMP-DX project is the reference implemention of the IUPAC JCAMP-DX spectroscopy data standard.

The newest version!
package org.jcamp.parser;

/**
 * iterator over a string returning substring positions
 * @author Thomas Weber
 * @see JCAMPParser
 */
interface IStringIterator {
    /**
     * get current offset within string.
     */
    int getOffset();
    /**
     * check if another substring is available.
     * @return boolean
     */
    boolean hasNext();
    /**
     * gets next substring.
     * @return java.lang.String
     */
    String next();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy