org.jsapar.schema.CellValueCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsapar Show documentation
Show all versions of jsapar Show documentation
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);
}