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

org.assertj.db.api.navigation.ToValueFromColumn 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-2015 the original author or authors.
 */
package org.assertj.db.api.navigation;

/**
 * Defines methods to navigate to a value from a {@link org.assertj.db.type.Column}
 * (a column from a {@link org.assertj.db.type.Change}}.
 * 

The different methods return an assertion on one value {@link org.assertj.db.api.navigation.ValueAssert}.

*

These methods exists when navigating (at the beginning {@code assertThat()}) from changes.

*

As shown in the diagram below, if navigating from changes, it is possible to call the method to navigate to a {@link org.assertj.db.api.navigation.ColumnAssert} from :

*
    *
  • a column of a change ({@link org.assertj.db.api.ChangeColumnAssert})
  • *
  • a value of a column of a change ({@link org.assertj.db.api.ChangeColumnValueAssert})
  • *
*

* diagram with navigation to column *

*

It is important to keep in mind that the methods are executed from the point of view of the last instance with assertion methods on a column of a change ({@link org.assertj.db.api.ChangeAssert}).
* So all the lines of code below are equivalent : they point on the value at end point of first column. *

*
 * 
 * assertThat(changes).change().column().valueAtEndPoint()......;                                           // Point directly on the value at end point
 * // Use the returnToOrigin() method of AbstractAssertWithOrigin to return on the column and access to the value at the end point
 * assertThat(changes).change().column().valueAtStartPoint().returnToOrigin().valueAtEndPoint()......;
 * assertThat(changes).change().column().valueAtStartPoint().valueAtEndPoint()......;                       // Same as precedent but returnToOrigin() is implicit
 * assertThat(changes).change().row().value().change(0).column().valueAtEndPoint()......;
 * // Equivalent to the precedent but with the use of the returnToOrigin() method of AbstractAssertWithOrigin
 * assertThat(changes).change().row().value().returnToOrigin().returnToOrigin().returnToOrigin().change(0).column().value(1)......;
 * 
 * 
* * @author Régis Pouiller * * @param The class of a assertion on a value (an sub-class of {@link org.assertj.db.api.navigation.ValueAssert}). */ public interface ToValueFromColumn { /** * Returns assertion methods on the value at the start point. * * @return An object to make assertions on the next value. * @see org.assertj.db.api.ChangeColumnAssert#valueAtStartPoint * @see org.assertj.db.api.ChangeColumnValueAssert#valueAtStartPoint */ public V valueAtStartPoint(); /** * Returns assertion methods on the value at the end point. * * @return An object to make assertions on the value. * @see org.assertj.db.api.ChangeColumnAssert#valueAtEndPoint * @see org.assertj.db.api.ChangeColumnValueAssert#valueAtEndPoint */ public V valueAtEndPoint(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy