public static enum Meta.Calibration extends java.lang.Enum<Meta.Calibration>
| Enum Constant and Description |
|---|
HARDENED
Hardened calibration, targets extra low APCER with higher BPCER.
|
REGULAR
Regular calibration, targets low APCER.
|
SOFT
Soft calibration, achieves lower BPCER while still having acceptable APCER.
|
| Modifier and Type | Method and Description |
|---|---|
static Meta.Calibration |
fromCode(int code) |
int |
getCode() |
static Meta.Calibration |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Meta.Calibration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Meta.Calibration REGULAR
public static final Meta.Calibration SOFT
public static final Meta.Calibration HARDENED
public static Meta.Calibration[] values()
for (Meta.Calibration c : Meta.Calibration.values()) System.out.println(c);
public static Meta.Calibration 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 getCode()
public static Meta.Calibration fromCode(int code)