
com.obdobion.argument.input.IParserInput Maven / Gradle / Ivy
package com.obdobion.argument.input;
/**
*
* IParserInput interface.
*
*
* @author Chris DeGreef [email protected]
*/
public interface IParserInput
{
/**
*
* parseTokens.
*
*
* @return an array of {@link com.obdobion.argument.input.Token} objects.
*/
public Token[] parseTokens();
/**
*
* substring.
*
*
* @param inclusiveStart a int.
* @param exclusiveEnd a int.
* @return a {@link java.lang.String} object.
*/
public String substring(int inclusiveStart, int exclusiveEnd);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy