Project

General

Profile

1
package eu.dnetlib.pace.config;
2

    
3
/**
4
 * The Enum Cond.
5
 */
6
public enum Cond {
7

    
8
	/** The year match. */
9
	yearMatch,
10
	/** The title version match. */
11
	titleVersionMatch,
12
	/** The size match. */
13
	sizeMatch,
14
	/**
15
	 * Returns true if the field values are different
16
	 */
17
	mustBeDifferent,
18
	/** The Exact match. */
19
	exactMatch,
20
	/**
21
	 * The Exact match ignore case.
22
	 */
23
	exactMatchIgnoreCase,
24
	/** The Exact match specialized to recognize DOI values. */
25
	doiExactMatch,
26
	/** The Exact match that checks if pid type and value are the same */
27
	pidMatch
28
}
(2-2/7)