Module com.machinezoo.fingerprintio
Enum Iso19794p1v2011Modality
- java.lang.Object
-
- java.lang.Enum<Iso19794p1v2011Modality>
-
- com.machinezoo.fingerprintio.iso19794p1v2011.Iso19794p1v2011Modality
-
- All Implemented Interfaces:
-
Serializable,Comparable<Iso19794p1v2011Modality>
public enum Iso19794p1v2011Modality extends Enum<Iso19794p1v2011Modality>
File signature / magic number (MAGIC).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ISO_19794_10ISO 19794-10: Hand geometry (HND).ISO_19794_11ISO 19794-11: Processed signature (SPD).ISO_19794_13ISO 19794-13: Voice (VDI).ISO_19794_14ISO 19794-14: DNA material (DNA).ISO_19794_2ISO 19794-2: Fingerprint minutiae (FMR).ISO_19794_3ISO 19794-3: Fingerprint spectral data (FSP).ISO_19794_4ISO 19794-4: Fingerprint images (FIR).ISO_19794_5ISO 19794-5: Face images (FAC).ISO_19794_6ISO 19794-6: Iris images (IIR).ISO_19794_7ISO 19794-7: Raw signature (SDI).ISO_19794_8ISO 19794-8: Fingerprint skeletons (FSK).ISO_19794_9ISO 19794-9: Vascular images (VIR).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Iso19794p1v2011ModalityvalueOf(String name)Returns the enum constant of this type with the specified name.static Iso19794p1v2011Modality[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ISO_19794_2
public static final Iso19794p1v2011Modality ISO_19794_2
ISO 19794-2: Fingerprint minutiae (FMR).
-
ISO_19794_3
public static final Iso19794p1v2011Modality ISO_19794_3
ISO 19794-3: Fingerprint spectral data (FSP).
-
ISO_19794_4
public static final Iso19794p1v2011Modality ISO_19794_4
ISO 19794-4: Fingerprint images (FIR).
-
ISO_19794_5
public static final Iso19794p1v2011Modality ISO_19794_5
ISO 19794-5: Face images (FAC).
-
ISO_19794_6
public static final Iso19794p1v2011Modality ISO_19794_6
ISO 19794-6: Iris images (IIR).
-
ISO_19794_7
public static final Iso19794p1v2011Modality ISO_19794_7
ISO 19794-7: Raw signature (SDI).
-
ISO_19794_8
public static final Iso19794p1v2011Modality ISO_19794_8
ISO 19794-8: Fingerprint skeletons (FSK).
-
ISO_19794_9
public static final Iso19794p1v2011Modality ISO_19794_9
ISO 19794-9: Vascular images (VIR).
-
ISO_19794_10
public static final Iso19794p1v2011Modality ISO_19794_10
ISO 19794-10: Hand geometry (HND).
-
ISO_19794_11
public static final Iso19794p1v2011Modality ISO_19794_11
ISO 19794-11: Processed signature (SPD).
-
ISO_19794_13
public static final Iso19794p1v2011Modality ISO_19794_13
ISO 19794-13: Voice (VDI).
-
ISO_19794_14
public static final Iso19794p1v2011Modality ISO_19794_14
ISO 19794-14: DNA material (DNA).
-
-
Method Detail
-
values
public static Iso19794p1v2011Modality[] 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 (Iso19794p1v2011Modality c : Iso19794p1v2011Modality.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Iso19794p1v2011Modality 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
-
-