org.simpleflatmapper.csv.property.MandatoryColumnProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm-csv Show documentation
Show all versions of sfm-csv Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.simpleflatmapper.csv.property;
import org.simpleflatmapper.map.property.IgnoreRowIfNullProperty;
/**
* Indicate that the column should be present for the row to consider having data.
* The column needs to be present in the mapping - headers or manual mapper through builder.
* The behavior is undefined when using joins.
*/
public final class MandatoryColumnProperty extends IgnoreRowIfNullProperty {
public static final MandatoryColumnProperty INSTANCE = new MandatoryColumnProperty();
private MandatoryColumnProperty() {
}
}