de.hpi.fgis.dude.util.data
Enum DuDeObjectPair.DuplicateType

java.lang.Object
  extended by java.lang.Enum<DuDeObjectPair.DuplicateType>
      extended by de.hpi.fgis.dude.util.data.DuDeObjectPair.DuplicateType
All Implemented Interfaces:
Serializable, Comparable<DuDeObjectPair.DuplicateType>
Enclosing class:
DuDeObjectPair

public static enum DuDeObjectPair.DuplicateType
extends Enum<DuDeObjectPair.DuplicateType>

DuDeObjectPair.DuplicateType declares all possible values for the is-duplicate property.

Author:
Matthias Pohl

Enum Constant Summary
Duplicate
          This type is used for indicating duplicates.
Fuzzy
          This type is used if the algorithm could not determine whether it is a duplicate or a non-duplicate.
NonDuplicate
          This type is used if the pair represents no duplicate.
NotDefined
          This type indicates that the property was not set, yet.
 
Method Summary
static DuDeObjectPair.DuplicateType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DuDeObjectPair.DuplicateType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Duplicate

public static final DuDeObjectPair.DuplicateType Duplicate
This type is used for indicating duplicates.


Fuzzy

public static final DuDeObjectPair.DuplicateType Fuzzy
This type is used if the algorithm could not determine whether it is a duplicate or a non-duplicate.


NonDuplicate

public static final DuDeObjectPair.DuplicateType NonDuplicate
This type is used if the pair represents no duplicate.


NotDefined

public static final DuDeObjectPair.DuplicateType NotDefined
This type indicates that the property was not set, yet.

Method Detail

values

public static DuDeObjectPair.DuplicateType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DuDeObjectPair.DuplicateType c : DuDeObjectPair.DuplicateType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DuDeObjectPair.DuplicateType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2011 Hasso Plattner Institute - Chair of Information Systems. All Rights Reserved.