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

org.jsapar.schema.CellValueCondition Maven / Gradle / Ivy

Go to download

JSaPar is a Java library providing a schema based parser and composer of almost collected sorts of delimited and fixed width files.

The newest version!
package org.jsapar.schema;

/**
 * Interface for cell validation.
 * 
* Deprecated since 2.2. Use {@code Predicate} */ @FunctionalInterface @Deprecated public interface CellValueCondition { /** * @param value The string value to test. * @return True if the given string value satisfies the condition on this cell. False otherwise. */ boolean satisfies(String value); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy