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

com.univocity.parsers.common.fields.FieldSelector Maven / Gradle / Ivy

Go to download

univocity's open source parsers for processing different text formats using a consistent API

There is a newer version: 2.9.1
Show newest version
/*******************************************************************************
 * 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.fields;

import com.univocity.parsers.common.*;

/**
 *
 * Interface used to identify classes capable of selecting fields and returning their positions in a given sequence.
 *
 * @author Univocity Software Pty Ltd - [email protected]
 *
 */
public interface FieldSelector extends Cloneable {

	/**
	 * Returns the indexes of any selected fields that are part of a sequence of headers.
	 * @param headers the sequence of headers that might have some elements selected by this FieldSelector
	 * @return the positions of all selected elements in the given headers sequence.
	 */
	int[] getFieldIndexes(String[] headers);

	/**
	 * Returns the indexes of any selected fields that are part of a sequence of headers.
	 * @param headers the sequence of headers that might have some elements selected by this FieldSelector
	 * @return the positions of all selected elements in the given headers sequence.
	 */
	int[] getFieldIndexes(NormalizedString[] headers);

	/**
	 * Returns a string that represents the current field selection
	 * @return a string that represents the current field selection
	 */
	String describe();

	/**
	 * Clones this field selector. Changes to the selection on the clone won't be reflected on the original
	 * @return a copy of the current field selector.
	 */
	Object clone();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy