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

org.assertj.db.navigation.PositionWithColumns Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
/**
 * 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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy