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

org.mwg.csv.KField Maven / Gradle / Ivy

There is a newer version: 11
Show newest version
package org.mwg.csv;

public interface KField {

    String name();

    KField rename(String newName);

    KField isDouble();

    KField isLong();

    KField isInt();

    KField ignore();

    KField ignoreIfValueEquals(String value);

    interface KTransformFunction {
        Object transform(String value);
    }

    KField transformFunction(KTransformFunction function);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy