public enum VectorizationMethod extends Enum<VectorizationMethod>
Pixel matching rule for validation
| Enum Constant and Description |
|---|
Auto |
ByBlackMaxValueThreshold |
ByGrayMaxSaturationThreshold |
ByThreshold |
ByWhiteMinValueThreshold |
| Modifier and Type | Method and Description |
|---|---|
static VectorizationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VectorizationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VectorizationMethod Auto
public static final VectorizationMethod ByThreshold
public static final VectorizationMethod ByGrayMaxSaturationThreshold
public static final VectorizationMethod ByBlackMaxValueThreshold
public static final VectorizationMethod ByWhiteMinValueThreshold
public static VectorizationMethod[] values()
for (VectorizationMethod c : VectorizationMethod.values()) System.out.println(c);
public static VectorizationMethod 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 (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.