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

com.altova.text.tablelike.csv.ParserStateInsideField Maven / Gradle / Ivy

////////////////////////////////////////////////////////////////////////
//
// ParserStateInsideField.java
//
// This file was generated by MapForce 2017sp2.
//
// YOU SHOULD NOT MODIFY THIS FILE, BECAUSE IT WILL BE
// OVERWRITTEN WHEN YOU RE-RUN CODE GENERATION.
//
// Refer to the MapForce Documentation for further details.
// http://www.altova.com/mapforce
//
////////////////////////////////////////////////////////////////////////

package com.altova.text.tablelike.csv;

class ParserStateInsideField extends ParserState {
    public ParserStateInsideField(Parser owner, ParserStateFactory states) {
        super(owner, states);
    }

    public ParserState process(char current) {
        super.getOwner().appendCharacterToToken(current);
        super.getOwner().moveNext();
        return this;
    }

    public ParserState processFieldDelimiter(char current) {
        super.getOwner().notifyAboutTokenComplete();
        super.getOwner().moveNext();
        return super.getStates().getWaitingForField();
    }

    public ParserState processRecordDelimiter(char current)
            throws BadFormatException {
        super.getOwner().notifyAboutTokenComplete();
        super.getOwner().notifyAboutEndOfRecord();
        super.getOwner().moveNext();
        return super.getStates().getWaitingForField();
    }

    public ParserState processQuoteCharacter(char current) {
        return this.process(current);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy