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

org.simpleflatmapper.csv.property.MandatoryColumnProperty Maven / Gradle / Ivy

Go to download

Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.

There is a newer version: 9.0.2
Show newest version
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() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy