org.assertj.db.navigation.PositionWithColumns Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertj-db Show documentation
Show all versions of assertj-db Show documentation
AssertJ-DB - Rich and fluent assertions for testing with database
/**
* 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.
*
* Copyright 2012-2016 the original author or authors.
*/
package org.assertj.db.navigation;
import org.assertj.db.exception.AssertJDBException;
import org.assertj.db.global.AbstractElement;
import org.assertj.db.type.DbElement;
import org.assertj.db.type.lettercase.CaseComparison;
import org.assertj.db.util.NameComparator;
import java.util.List;
/**
* Position with columns during navigation.
*
* @param The class of the actual position (an sub-class of {@link org.assertj.db.global.AbstractElement} and of {@link org.assertj.db.navigation.Navigation}).
* @param The class of the next position where the navigation go (an sub-class of {@link org.assertj.db.global.AbstractElement} and of {@link org.assertj.db.navigation.Navigation}).
* @param The class of the database element on which is the next position (an sub-class of {@link org.assertj.db.type.DbElement}).
*
* @author Régis Pouiller
* @since 1.1.0
*/
public abstract class PositionWithColumns extends Position {
/**
* Constructor.
*
* @param myself Actual value.
* @param elementClass Class of the element of navigation (used to make instance).
*/
public PositionWithColumns(E myself, Class elementClass) {
super(myself, elementClass);
}
/**
* Gets an instance of element of navigation corresponding to the column name.
* If this instance is already instanced, the method returns it from the cache.
*
* @param elementsList List of elements.
* @param columnsNameList List of the columns name.
* @param columnName Name of the column of the element on which is the instance of element of navigation.
* @param comparison Case comparison for column name.
* @return The instance of element of navigation.
*/
public N getInstance(List elementsList, List columnsNameList, String columnName, CaseComparison comparison) {
if (columnName == null) {
throw new NullPointerException("Column name must be not null");
}
int index = NameComparator.INSTANCE.indexOf(columnsNameList, columnName, comparison);
if (index == -1) {
throw new AssertJDBException(String.format("Column <%s> does not exist%nin <%s>%nwith comparison %s",
columnName, columnsNameList, comparison.getComparisonName()));
}
return getInstance(elementsList, index);
}
}