public enum MinutiaType extends java.lang.Enum<MinutiaType>
This enumeration represents the minutia type.
Enum Constant and Description |
---|
CORE |
DELTA |
MINUTIA_BIF |
MINUTIA_TERM |
MINUTIA_UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static MinutiaType |
fromInteger(int value)
Converts an integer to an enumeration object.
|
int |
value()
Gets the enumaration object value.
|
static MinutiaType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MinutiaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MinutiaType MINUTIA_BIF
public static final MinutiaType MINUTIA_TERM
public static final MinutiaType MINUTIA_UNKNOWN
public static final MinutiaType CORE
public static final MinutiaType DELTA
public static MinutiaType[] values()
for (MinutiaType c : MinutiaType.values()) System.out.println(c);
public static MinutiaType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
Gets the enumaration object value.
public static MinutiaType fromInteger(int value)
Converts an integer to an enumeration object.
value
-