com.morpho.morphosmart.sdk
Enum SecurityLevel

java.lang.Object
  extended by java.lang.Enum<SecurityLevel>
      extended by com.morpho.morphosmart.sdk.SecurityLevel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SecurityLevel>

public enum SecurityLevel
extends java.lang.Enum<SecurityLevel>


Enum Constant Summary
FFD_SECURITY_LEVEL_DEFAULT_HOST
          Undefined Security level.
FFD_SECURITY_LEVEL_HIGH_HOST
          High False Finger Detection security level.
FFD_SECURITY_LEVEL_LOW_HOST
          Low False Finger Detection security level.
FFD_SECURITY_LEVEL_MEDIUM_HOST
          Medium False Finger Detection security level.
FFD_SECURITY_LEVEL_NONE_HOST
          This level allows disabling FFD functionality.
MULTIMODAL_SECURITY_HIGH
          High False Multimodal Detection security level.
MULTIMODAL_SECURITY_MEDIUM
          Medium False Multimodal Detection security level.
MULTIMODAL_SECURITY_STANDARD
          Low False Multimodal Detection security level.
 
Method Summary
static SecurityLevel fromInt(int value, boolean isFVP)
           
static SecurityLevel fromString(java.lang.String label, boolean isFVP)
           
 java.lang.String getLabel()
           
 int getValue()
           
static SecurityLevel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SecurityLevel[] 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

FFD_SECURITY_LEVEL_LOW_HOST

public static final SecurityLevel FFD_SECURITY_LEVEL_LOW_HOST
Low False Finger Detection security level.


FFD_SECURITY_LEVEL_MEDIUM_HOST

public static final SecurityLevel FFD_SECURITY_LEVEL_MEDIUM_HOST
Medium False Finger Detection security level.


FFD_SECURITY_LEVEL_HIGH_HOST

public static final SecurityLevel FFD_SECURITY_LEVEL_HIGH_HOST
High False Finger Detection security level.


FFD_SECURITY_LEVEL_NONE_HOST

public static final SecurityLevel FFD_SECURITY_LEVEL_NONE_HOST
This level allows disabling FFD functionality.


MULTIMODAL_SECURITY_STANDARD

public static final SecurityLevel MULTIMODAL_SECURITY_STANDARD
Low False Multimodal Detection security level.


MULTIMODAL_SECURITY_MEDIUM

public static final SecurityLevel MULTIMODAL_SECURITY_MEDIUM
Medium False Multimodal Detection security level.


MULTIMODAL_SECURITY_HIGH

public static final SecurityLevel MULTIMODAL_SECURITY_HIGH
High False Multimodal Detection security level.


FFD_SECURITY_LEVEL_DEFAULT_HOST

public static final SecurityLevel FFD_SECURITY_LEVEL_DEFAULT_HOST
Undefined Security level.

Method Detail

values

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

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

valueOf

public static SecurityLevel 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

getValue

public int getValue()
Returns:
the value

getLabel

public java.lang.String getLabel()
Returns:
the label

fromInt

public static SecurityLevel fromInt(int value,
                                    boolean isFVP)

fromString

public static SecurityLevel fromString(java.lang.String label,
                                       boolean isFVP)