public enum MatchLevel extends Enum<MatchLevel>
| Enum Constant and Description |
|---|
CONTENT
Images have the same outline.
|
EXACT
Images are identical.
|
LAYOUT
Images have the same layout.
|
LAYOUT2
Images have the same layout.
|
NONE
Images do not necessarily match.
|
STRICT
Images are nearly identical.
|
| Modifier and Type | Method and Description |
|---|---|
static MatchLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchLevel NONE
public static final MatchLevel LAYOUT
public static final MatchLevel LAYOUT2
public static final MatchLevel CONTENT
public static final MatchLevel STRICT
public static final MatchLevel EXACT
public static MatchLevel[] values()
for (MatchLevel c : MatchLevel.values()) System.out.println(c);
public static MatchLevel 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 © 2017. All rights reserved.