![JAR search and dependency download from the Maven repository](/logo.png)
org.parboiled.parserunners.ParseRunner Maven / Gradle / Ivy
/*
* Copyright (C) 2009-2011 Mathias Doenitz
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.parboiled.parserunners;
import org.parboiled.buffers.InputBuffer;
import org.parboiled.errors.ParseError;
import org.parboiled.support.ParsingResult;
import org.parboiled.support.ValueStack;
import java.util.List;
/**
* A ParseRunner performs the actual parsing run of a given parser rule on a given input text.
*/
public interface ParseRunner {
/**
* Initializes the parse runner with the given error list.
*
* @param parseErrors the error list to start off with
* @return this instance
*/
ParseRunner withParseErrors(List parseErrors);
/**
* Initializes the parse runner with the given ValueStack instance.
*
* @param valueStack the ValueStack to use
* @return this instance
*/
ParseRunner withValueStack(ValueStack valueStack);
/**
* Performs the actual parse and creates a corresponding ParsingResult instance.
*
* @param input the input text to parse
* @return the ParsingResult for the run
*/
ParsingResult run(String input);
/**
* Performs the actual parse and creates a corresponding ParsingResult instance.
*
* @param input the input text to parse
* @return the ParsingResult for the run
*/
ParsingResult run(char[] input);
/**
* Performs the actual parse and creates a corresponding ParsingResult instance.
*
* @param inputBuffer the inputBuffer to use
* @return the ParsingResult for the run
*/
ParsingResult run(InputBuffer inputBuffer);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy