fingerprinters
Enum FingerPrinterFactory.FingerprintType

java.lang.Object
  extended by java.lang.Enum<FingerPrinterFactory.FingerprintType>
      extended by fingerprinters.FingerPrinterFactory.FingerprintType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FingerPrinterFactory.FingerprintType>
Enclosing class:
FingerPrinterFactory

public static enum FingerPrinterFactory.FingerprintType
extends java.lang.Enum<FingerPrinterFactory.FingerprintType>


Enum Constant Summary
AP2D
           
AP3D
           
ASP
           
AT2D
           
AT3D
           
CATS2D
           
CATS3D
           
DFS
           
ECFP
           
LSTAR
           
PHAP2POINT2D
           
PHAP2POINT3D
           
PHAP3POINT2D
           
PHAP3POINT3D
           
RAD2D
           
RAD3D
           
SHED
           
 
Method Summary
static FingerPrinterFactory.FingerprintType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FingerPrinterFactory.FingerprintType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DFS

public static final FingerPrinterFactory.FingerprintType DFS

ASP

public static final FingerPrinterFactory.FingerprintType ASP

AP2D

public static final FingerPrinterFactory.FingerprintType AP2D

AT2D

public static final FingerPrinterFactory.FingerprintType AT2D

AP3D

public static final FingerPrinterFactory.FingerprintType AP3D

AT3D

public static final FingerPrinterFactory.FingerprintType AT3D

CATS2D

public static final FingerPrinterFactory.FingerprintType CATS2D

CATS3D

public static final FingerPrinterFactory.FingerprintType CATS3D

PHAP2POINT2D

public static final FingerPrinterFactory.FingerprintType PHAP2POINT2D

PHAP3POINT2D

public static final FingerPrinterFactory.FingerprintType PHAP3POINT2D

PHAP2POINT3D

public static final FingerPrinterFactory.FingerprintType PHAP2POINT3D

PHAP3POINT3D

public static final FingerPrinterFactory.FingerprintType PHAP3POINT3D

ECFP

public static final FingerPrinterFactory.FingerprintType ECFP

LSTAR

public static final FingerPrinterFactory.FingerprintType LSTAR

SHED

public static final FingerPrinterFactory.FingerprintType SHED

RAD2D

public static final FingerPrinterFactory.FingerprintType RAD2D

RAD3D

public static final FingerPrinterFactory.FingerprintType RAD3D
Method Detail

values

public static FingerPrinterFactory.FingerprintType[] 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 (FingerPrinterFactory.FingerprintType c : FingerPrinterFactory.FingerprintType.values())
    System.out.println(c);

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

valueOf

public static FingerPrinterFactory.FingerprintType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null