com.morpho.morphosmart.sdk
Enum StrategyAcquisitionMode

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

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

Strategy Acquisition Mode


Enum Constant Summary
MORPHO_ACQ_ANTI_SPOOFING_MODE
          Detecting Spoofing Startegy Acquisition Mode.
MORPHO_ACQ_EXPERT_MODE
          Default Startegy Acquisition Mode.
MORPHO_ACQ_FULL_MULTIMODAL_MODE
          Full Multimodal Startegy Acquisition Mode.
MORPHO_ACQ_UNIVERSAL_ACCURATE_MODE
          Slow but Accurate Univeral Startegy Acquisition Mode.
MORPHO_ACQ_UNIVERSAL_FAST_MODE
          Fast Univeral Startegy Acquisition Mode.
 
Method Summary
static StrategyAcquisitionMode fromString(java.lang.String label)
           
 int getCode()
           
 java.lang.String getLabel()
           
static StrategyAcquisitionMode getValue(int id)
           
static StrategyAcquisitionMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StrategyAcquisitionMode[] 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

MORPHO_ACQ_EXPERT_MODE

public static final StrategyAcquisitionMode MORPHO_ACQ_EXPERT_MODE
Default Startegy Acquisition Mode.


MORPHO_ACQ_UNIVERSAL_FAST_MODE

public static final StrategyAcquisitionMode MORPHO_ACQ_UNIVERSAL_FAST_MODE
Fast Univeral Startegy Acquisition Mode.


MORPHO_ACQ_UNIVERSAL_ACCURATE_MODE

public static final StrategyAcquisitionMode MORPHO_ACQ_UNIVERSAL_ACCURATE_MODE
Slow but Accurate Univeral Startegy Acquisition Mode.


MORPHO_ACQ_FULL_MULTIMODAL_MODE

public static final StrategyAcquisitionMode MORPHO_ACQ_FULL_MULTIMODAL_MODE
Full Multimodal Startegy Acquisition Mode.


MORPHO_ACQ_ANTI_SPOOFING_MODE

public static final StrategyAcquisitionMode MORPHO_ACQ_ANTI_SPOOFING_MODE
Detecting Spoofing Startegy Acquisition Mode.

Method Detail

values

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

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

valueOf

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

getCode

public int getCode()
Returns:
Strategy Acquisition Mode code

getLabel

public java.lang.String getLabel()
Returns:
Strategy Acquisition Mode label

fromString

public static StrategyAcquisitionMode fromString(java.lang.String label)

getValue

public static StrategyAcquisitionMode getValue(int id)