public enum BinarizationHints extends Enum<BinarizationHints>
Enum Constant and Description |
---|
ComplexBackground |
Grayscale |
InvertImage |
MedianSmoothing |
None |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static BinarizationHints |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinarizationHints[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinarizationHints None
public static final BinarizationHints Grayscale
public static final BinarizationHints MedianSmoothing
public static final BinarizationHints InvertImage
public static final BinarizationHints ComplexBackground
public static BinarizationHints[] values()
for (BinarizationHints c : BinarizationHints.values()) System.out.println(c);
public static BinarizationHints 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 nullpublic String toString()
toString
in class Enum<BinarizationHints>
Copyright © 2015. All rights reserved.