mschaefer@8971: /* Copyright (C) 2017 by Bundesanstalt für Gewässerkunde mschaefer@8971: * Software engineering by mschaefer@8971: * Björnsen Beratende Ingenieure GmbH mschaefer@8971: * Dr. Schumacher Ingenieurbüro für Wasser und Umwelt mschaefer@8971: * mschaefer@8971: * This file is Free Software under the GNU AGPL (>=v3) mschaefer@8971: * and comes with ABSOLUTELY NO WARRANTY! Check out the mschaefer@8971: * documentation coming with Dive4Elements River for details. mschaefer@8971: */ mschaefer@8971: mschaefer@8971: package org.dive4elements.river.importer.common; mschaefer@8971: mschaefer@8971: /** mschaefer@8971: * Return of a parser's line handling method mschaefer@8971: * mschaefer@8971: * @author Matthias Schäfer mschaefer@8971: */ mschaefer@8971: public enum ParsingState { mschaefer@8971: CONTINUE, // no match, continue with other handlers mschaefer@8971: IGNORE, // match, content ignored mschaefer@8971: DONE, // match, content handled mschaefer@8971: STOP // severe error, stop the parsing loop mschaefer@8971: }