Module com.machinezoo.fingerprintio
Enum Ansi378v2009Am1ScanType
- java.lang.Object
-
- java.lang.Enum<Ansi378v2009Am1ScanType>
-
- com.machinezoo.fingerprintio.ansi378v2009am1.Ansi378v2009Am1ScanType
-
- All Implemented Interfaces:
-
Serializable
,Comparable<Ansi378v2009Am1ScanType>
public enum Ansi378v2009Am1ScanType extends Enum<Ansi378v2009Am1ScanType>
Impression type (SAMPLETYPE).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LIVE_NONOPTICAL_CONTACT_PLAIN
Live non-optical contact plain (code 22).LIVE_NONOPTICAL_CONTACT_ROLLED
Live non-optical contact rolled (code 23).LIVE_NONOPTICAL_CONTACTLESS_PLAIN
Live non-optical contactless plain (code 26).LIVE_NONOPTICAL_CONTACTLESS_ROLLED
Live non-optical contactless rolled (code 27).LIVE_OPTICAL_CONTACT_PLAIN
Live optical contact plain (code 20).LIVE_OPTICAL_CONTACT_ROLLED
Live optical contact rolled (code 21).LIVE_OPTICAL_CONTACTLESS_PLAIN
Live optical contactless plain (code 24).LIVE_OPTICAL_CONTACTLESS_ROLLED
Live optical contactless rolled (code 25).LIVE_PALM
Live palm (code 10).LIVE_PLAIN
Live plain (code 0).LIVE_ROLLED
Live rolled (code 1).LIVE_SWIPE
Live vertical swipe (code 8).NONLIVE_PALM
Non-live palm (code 11).NONLIVE_PLAIN
Non-live plain (code 2).NONLIVE_ROLLED
Non-live rolled (code 3).OTHER
Other (code 28).UNKNOWN
Unknown (code 29).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ansi378v2009Am1ScanType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Ansi378v2009Am1ScanType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIVE_PLAIN
public static final Ansi378v2009Am1ScanType LIVE_PLAIN
Live plain (code 0).
-
LIVE_ROLLED
public static final Ansi378v2009Am1ScanType LIVE_ROLLED
Live rolled (code 1).
-
NONLIVE_PLAIN
public static final Ansi378v2009Am1ScanType NONLIVE_PLAIN
Non-live plain (code 2).
-
NONLIVE_ROLLED
public static final Ansi378v2009Am1ScanType NONLIVE_ROLLED
Non-live rolled (code 3).
-
LIVE_SWIPE
public static final Ansi378v2009Am1ScanType LIVE_SWIPE
Live vertical swipe (code 8).
-
LIVE_PALM
public static final Ansi378v2009Am1ScanType LIVE_PALM
Live palm (code 10).
-
NONLIVE_PALM
public static final Ansi378v2009Am1ScanType NONLIVE_PALM
Non-live palm (code 11).
-
LIVE_OPTICAL_CONTACT_PLAIN
public static final Ansi378v2009Am1ScanType LIVE_OPTICAL_CONTACT_PLAIN
Live optical contact plain (code 20).
-
LIVE_OPTICAL_CONTACT_ROLLED
public static final Ansi378v2009Am1ScanType LIVE_OPTICAL_CONTACT_ROLLED
Live optical contact rolled (code 21).
-
LIVE_NONOPTICAL_CONTACT_PLAIN
public static final Ansi378v2009Am1ScanType LIVE_NONOPTICAL_CONTACT_PLAIN
Live non-optical contact plain (code 22).
-
LIVE_NONOPTICAL_CONTACT_ROLLED
public static final Ansi378v2009Am1ScanType LIVE_NONOPTICAL_CONTACT_ROLLED
Live non-optical contact rolled (code 23).
-
LIVE_OPTICAL_CONTACTLESS_PLAIN
public static final Ansi378v2009Am1ScanType LIVE_OPTICAL_CONTACTLESS_PLAIN
Live optical contactless plain (code 24).
-
LIVE_OPTICAL_CONTACTLESS_ROLLED
public static final Ansi378v2009Am1ScanType LIVE_OPTICAL_CONTACTLESS_ROLLED
Live optical contactless rolled (code 25).
-
LIVE_NONOPTICAL_CONTACTLESS_PLAIN
public static final Ansi378v2009Am1ScanType LIVE_NONOPTICAL_CONTACTLESS_PLAIN
Live non-optical contactless plain (code 26).
-
LIVE_NONOPTICAL_CONTACTLESS_ROLLED
public static final Ansi378v2009Am1ScanType LIVE_NONOPTICAL_CONTACTLESS_ROLLED
Live non-optical contactless rolled (code 27).
-
OTHER
public static final Ansi378v2009Am1ScanType OTHER
Other (code 28).
-
UNKNOWN
public static final Ansi378v2009Am1ScanType UNKNOWN
Unknown (code 29).
-
-
Method Detail
-
values
public static Ansi378v2009Am1ScanType[] 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 (Ansi378v2009Am1ScanType c : Ansi378v2009Am1ScanType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ansi378v2009Am1ScanType 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
-
-