Enum Constant and Description |
---|
AutoCalculateByImage
Auto calculate by image.
|
AutoCalculateByLine
Auto calculate by line.
|
Customized
Customized.
|
FixedValues
Fixed values.
|
None
No threshold.
|
Modifier and Type | Method and Description |
---|---|
static Threshold |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Threshold[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Threshold AutoCalculateByImage
Auto calculate by image.
public static final Threshold AutoCalculateByLine
Auto calculate by line.
public static final Threshold Customized
Customized.
public static final Threshold FixedValues
Fixed values.
public static final Threshold None
No threshold.
public static Threshold 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 static Threshold[] values()
for (Threshold c : Threshold.values()) System.out.println(c);