BrBETA_dnet-hadoop/dnet-pace-core/src/main/java/eu/dnetlib/pace/config/Cond.java

29 lines
547 B
Java

package eu.dnetlib.pace.config;
/**
* The Enum Cond.
*/
public enum Cond {
/** The year match. */
yearMatch,
/** The title version match. */
titleVersionMatch,
/** The size match. */
sizeMatch,
/**
* Returns true if the field values are different
*/
mustBeDifferent,
/** The Exact match. */
exactMatch,
/**
* The Exact match ignore case.
*/
exactMatchIgnoreCase,
/** The Exact match specialized to recognize DOI values. */
doiExactMatch,
/** The Exact match that checks if pid type and value are the same */
pidMatch
}