Project

General

Profile

1 26600 sandro.lab
package eu.dnetlib.pace.config;
2
3 33135 claudio.at
/**
4
 * The Enum Cond.
5
 */
6 26600 sandro.lab
public enum Cond {
7 33135 claudio.at
8
	/** The year match. */
9
	yearMatch,
10
	/** The title version match. */
11
	titleVersionMatch,
12
	/** The size match. */
13
	sizeMatch,
14 41138 claudio.at
	/**
15
	 * Returns true if the field values are different
16
	 */
17
	mustBeDifferent,
18 33135 claudio.at
	/** The Exact match. */
19
	exactMatch,
20 40081 claudio.at
	/**
21
	 * The Exact match ignore case.
22
	 */
23
	exactMatchIgnoreCase,
24 33135 claudio.at
	/** The Exact match specialized to recognize DOI values. */
25 41504 claudio.at
	doiExactMatch,
26
	/** The Exact match that checks if pid type and value are the same */
27
	pidMatch
28 26600 sandro.lab
}