Esempio n. 1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public boolean fillFrom(org.neo4j.csv.reader.Chunker chunker) throws java.io.IOException
        public override bool FillFrom(Chunker chunker)
        {
            if (chunker.NextChunk(_processingChunk))
            {
                CloseCurrentParser();
                this._visitor = null;
                this._parser  = new CsvInputParser(seeker(_processingChunk, _config), _delimiter, _idType, _header.clone(), _badCollector, _extractors);
                return(_header.entries().Length != 0);
            }
            return(false);
        }
Esempio n. 2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public boolean fillFrom(org.neo4j.csv.reader.Chunker chunker) throws java.io.IOException
        public override bool FillFrom(Chunker chunker)
        {
            return(chunker.NextChunk(this));
        }