Module com.machinezoo.fingerprintio
Enum Ansi378v2009Am1Position
- java.lang.Object
-
- java.lang.Enum<Ansi378v2009Am1Position>
-
- com.machinezoo.fingerprintio.ansi378v2009am1.Ansi378v2009Am1Position
-
- All Implemented Interfaces:
-
Serializable
,Comparable<Ansi378v2009Am1Position>
public enum Ansi378v2009Am1Position extends Enum<Ansi378v2009Am1Position>
Finger position on hands (POSITION).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOTH_INDEXES
Left and right index (code 46).BOTH_THUMBS
Left and right thumbs (code 15).LEFT_INDEX
Index finger on left hand (code 7).LEFT_INDEX_MIDDLE
Left index and middle (code 43).LEFT_INDEX_TO_LITTLE
Left index, middle, ring, and little (code 14).LEFT_INDEX_TO_RING
Left index, middle, and ring (code 49).LEFT_LITTLE
Little finger on left hand (code 10).LEFT_MIDDLE
Middle finger on left hand (code 8).LEFT_MIDDLE_RING
Left middle and ring (code 44).LEFT_MIDDLE_TO_LITTLE
Left middle, ring, and little (code 50).LEFT_RING
Ring finger on left hand (code 9).LEFT_RING_LITTLE
Left ring and little (code 45).LEFT_THUMB
Thumb on left hand (code 6).RIGHT_INDEX
Index finger on right hand (code 2).RIGHT_INDEX_MIDDLE
Right index and middle (code 40).RIGHT_INDEX_TO_LITTLE
Right index, middle, ring, and little (code 13).RIGHT_INDEX_TO_RING
Right index, middle, and ring (code 47).RIGHT_LITTLE
Little finger on right hand (code 5).RIGHT_MIDDLE
Middle finger on right hand (code 3).RIGHT_MIDDLE_RING
Right middle and ring (code 41).RIGHT_MIDDLE_TO_LITTLE
Right middle, ring, and little (code 48).RIGHT_RING
Ring finger on right hand (code 4).RIGHT_RING_LITTLE
Right ring and little (code 42).RIGHT_THUMB
Thumb on right hand (code 1).UNKNOWN
Unknown position (code 0).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Ansi378v2009Am1Position
valueOf(String name)
Returns the enum constant of this type with the specified name.static Ansi378v2009Am1Position[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final Ansi378v2009Am1Position UNKNOWN
Unknown position (code 0).
-
RIGHT_THUMB
public static final Ansi378v2009Am1Position RIGHT_THUMB
Thumb on right hand (code 1).
-
RIGHT_INDEX
public static final Ansi378v2009Am1Position RIGHT_INDEX
Index finger on right hand (code 2).
-
RIGHT_MIDDLE
public static final Ansi378v2009Am1Position RIGHT_MIDDLE
Middle finger on right hand (code 3).
-
RIGHT_RING
public static final Ansi378v2009Am1Position RIGHT_RING
Ring finger on right hand (code 4).
-
RIGHT_LITTLE
public static final Ansi378v2009Am1Position RIGHT_LITTLE
Little finger on right hand (code 5).
-
LEFT_THUMB
public static final Ansi378v2009Am1Position LEFT_THUMB
Thumb on left hand (code 6).
-
LEFT_INDEX
public static final Ansi378v2009Am1Position LEFT_INDEX
Index finger on left hand (code 7).
-
LEFT_MIDDLE
public static final Ansi378v2009Am1Position LEFT_MIDDLE
Middle finger on left hand (code 8).
-
LEFT_RING
public static final Ansi378v2009Am1Position LEFT_RING
Ring finger on left hand (code 9).
-
LEFT_LITTLE
public static final Ansi378v2009Am1Position LEFT_LITTLE
Little finger on left hand (code 10).
-
RIGHT_INDEX_TO_LITTLE
public static final Ansi378v2009Am1Position RIGHT_INDEX_TO_LITTLE
Right index, middle, ring, and little (code 13).
-
LEFT_INDEX_TO_LITTLE
public static final Ansi378v2009Am1Position LEFT_INDEX_TO_LITTLE
Left index, middle, ring, and little (code 14).
-
BOTH_THUMBS
public static final Ansi378v2009Am1Position BOTH_THUMBS
Left and right thumbs (code 15).
-
RIGHT_INDEX_MIDDLE
public static final Ansi378v2009Am1Position RIGHT_INDEX_MIDDLE
Right index and middle (code 40).
-
RIGHT_MIDDLE_RING
public static final Ansi378v2009Am1Position RIGHT_MIDDLE_RING
Right middle and ring (code 41).
-
RIGHT_RING_LITTLE
public static final Ansi378v2009Am1Position RIGHT_RING_LITTLE
Right ring and little (code 42).
-
LEFT_INDEX_MIDDLE
public static final Ansi378v2009Am1Position LEFT_INDEX_MIDDLE
Left index and middle (code 43).
-
LEFT_MIDDLE_RING
public static final Ansi378v2009Am1Position LEFT_MIDDLE_RING
Left middle and ring (code 44).
-
LEFT_RING_LITTLE
public static final Ansi378v2009Am1Position LEFT_RING_LITTLE
Left ring and little (code 45).
-
BOTH_INDEXES
public static final Ansi378v2009Am1Position BOTH_INDEXES
Left and right index (code 46).
-
RIGHT_INDEX_TO_RING
public static final Ansi378v2009Am1Position RIGHT_INDEX_TO_RING
Right index, middle, and ring (code 47).
-
RIGHT_MIDDLE_TO_LITTLE
public static final Ansi378v2009Am1Position RIGHT_MIDDLE_TO_LITTLE
Right middle, ring, and little (code 48).
-
LEFT_INDEX_TO_RING
public static final Ansi378v2009Am1Position LEFT_INDEX_TO_RING
Left index, middle, and ring (code 49).
-
LEFT_MIDDLE_TO_LITTLE
public static final Ansi378v2009Am1Position LEFT_MIDDLE_TO_LITTLE
Left middle, ring, and little (code 50).
-
-
Method Detail
-
values
public static Ansi378v2009Am1Position[] 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 (Ansi378v2009Am1Position c : Ansi378v2009Am1Position.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ansi378v2009Am1Position 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
-
-