Module com.machinezoo.fingerprintio
Enum Ansi378v2004Position
- java.lang.Object
-
- java.lang.Enum<Ansi378v2004Position>
-
- com.machinezoo.fingerprintio.ansi378v2004.Ansi378v2004Position
-
- All Implemented Interfaces:
-
Serializable
,Comparable<Ansi378v2004Position>
public enum Ansi378v2004Position extends Enum<Ansi378v2004Position>
Finger position on hands (POSITION).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LEFT_INDEX
Index finger on left hand (code 7).LEFT_LITTLE
Little finger on left hand (code 10).LEFT_MIDDLE
Middle finger on left hand (code 8).LEFT_RING
Ring finger on left hand (code 9).LEFT_THUMB
Thumb on left hand (code 6).RIGHT_INDEX
Index finger on right hand (code 2).RIGHT_LITTLE
Little finger on right hand (code 5).RIGHT_MIDDLE
Middle finger on right hand (code 3).RIGHT_RING
Ring finger on right hand (code 4).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 Ansi378v2004Position
valueOf(String name)
Returns the enum constant of this type with the specified name.static Ansi378v2004Position[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final Ansi378v2004Position UNKNOWN
Unknown position (code 0).
-
RIGHT_THUMB
public static final Ansi378v2004Position RIGHT_THUMB
Thumb on right hand (code 1).
-
RIGHT_INDEX
public static final Ansi378v2004Position RIGHT_INDEX
Index finger on right hand (code 2).
-
RIGHT_MIDDLE
public static final Ansi378v2004Position RIGHT_MIDDLE
Middle finger on right hand (code 3).
-
RIGHT_RING
public static final Ansi378v2004Position RIGHT_RING
Ring finger on right hand (code 4).
-
RIGHT_LITTLE
public static final Ansi378v2004Position RIGHT_LITTLE
Little finger on right hand (code 5).
-
LEFT_THUMB
public static final Ansi378v2004Position LEFT_THUMB
Thumb on left hand (code 6).
-
LEFT_INDEX
public static final Ansi378v2004Position LEFT_INDEX
Index finger on left hand (code 7).
-
LEFT_MIDDLE
public static final Ansi378v2004Position LEFT_MIDDLE
Middle finger on left hand (code 8).
-
LEFT_RING
public static final Ansi378v2004Position LEFT_RING
Ring finger on left hand (code 9).
-
LEFT_LITTLE
public static final Ansi378v2004Position LEFT_LITTLE
Little finger on left hand (code 10).
-
-
Method Detail
-
values
public static Ansi378v2004Position[] 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 (Ansi378v2004Position c : Ansi378v2004Position.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Ansi378v2004Position 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
-
-