public static enum BootstrapUtility.BootstrapTestResult extends Enum<BootstrapUtility.BootstrapTestResult>
Enum Constant and Description |
---|
CollinearPointSet
Indicates that all input vertices are collinear or nearly collinear
within the specified thresholds.
|
InsufficientPointSet
Indicates that the point set is insufficiently large for analysis
|
TrivialPointSet
Indicates that all input vertices are coincident or nearly coincident, so
that no meaningful computations are possible within the specified
thresholds.
|
Unknown
Indicates that the routine was unable to find a valid bootstrap triangle
from the input vertex set.
|
Valid
Indicates that the routine was able to find a valid bootstrap triangle
from the input vertex set.
|
Modifier and Type | Method and Description |
---|---|
static BootstrapUtility.BootstrapTestResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BootstrapUtility.BootstrapTestResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BootstrapUtility.BootstrapTestResult InsufficientPointSet
public static final BootstrapUtility.BootstrapTestResult TrivialPointSet
public static final BootstrapUtility.BootstrapTestResult CollinearPointSet
public static final BootstrapUtility.BootstrapTestResult Valid
public static final BootstrapUtility.BootstrapTestResult Unknown
public static BootstrapUtility.BootstrapTestResult[] values()
for (BootstrapUtility.BootstrapTestResult c : BootstrapUtility.BootstrapTestResult.values()) System.out.println(c);
public static BootstrapUtility.BootstrapTestResult 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 © 2021. All rights reserved.