public static enum ThresholdingVisitor.ThresholdingResult extends Enum<ThresholdingVisitor.ThresholdingResult>
Enum Constant and Description |
---|
THRESHOLDING_FAILED |
THRESHOLDING_SUCCEEDED |
THRESHOLDING_UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ThresholdingVisitor.ThresholdingResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ThresholdingVisitor.ThresholdingResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThresholdingVisitor.ThresholdingResult THRESHOLDING_UNKNOWN
public static final ThresholdingVisitor.ThresholdingResult THRESHOLDING_SUCCEEDED
public static final ThresholdingVisitor.ThresholdingResult THRESHOLDING_FAILED
public static ThresholdingVisitor.ThresholdingResult[] values()
for (ThresholdingVisitor.ThresholdingResult c : ThresholdingVisitor.ThresholdingResult.values()) System.out.println(c);
public static ThresholdingVisitor.ThresholdingResult valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.