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

com.univocity.parsers.common.ContextWrapper Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright 2014 Univocity Software Pty Ltd
 *
 * 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 com.univocity.parsers.common;

import com.univocity.parsers.common.record.*;

/**
 * A simple a wrapper for a {@link Context}.
 *
 * @author Univocity Software Pty Ltd - [email protected]
 */
public abstract class ContextWrapper implements Context {

	protected final T context;

	/**
	 * Wraps a {@link Context}.
	 *
	 * @param context the context object to be wrapped.
	 */
	public ContextWrapper(T context) {
		this.context = context;
	}

	@Override
	public String[] headers() {
		return context.headers();
	}

	@Override
	public int[] extractedFieldIndexes() {
		return context.extractedFieldIndexes();
	}

	@Override
	public boolean columnsReordered() {
		return context.columnsReordered();
	}

	@Override
	public int indexOf(String header) {
		return context.indexOf(header);
	}

	@Override
	public int indexOf(Enum header) {
		return context.indexOf(header);
	}

	@Override
	public int currentColumn() {
		return context.currentColumn();
	}

	@Override
	public long currentRecord() {
		return context.currentRecord();
	}

	@Override
	public void stop() {
		context.stop();
	}

	@Override
	public boolean isStopped() {
		return context.isStopped();
	}

	@Override
	public String[] selectedHeaders() {
		return context.selectedHeaders();
	}

	@Override
	public int errorContentLength() {
		return context.errorContentLength();
	}

	@Override
	public Record toRecord(String[] row) {
		return context.toRecord(row);
	}

	@Override
	public RecordMetaData recordMetaData() {
		return context.recordMetaData();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy