public enum ResultConclusion extends Enum<ResultConclusion>
| Enum Constant and Description |
|---|
DIFFER
Images are visible different also after applying filtering by masks.
|
ERROR
The error occured during process of comparison.
|
NOT_TESTED
The pattern was not tested because it wasn't necessary to inspect it.
|
PERCEPTUALLY_SAME
The images are same when applied perceptual comparison or filtering by masks.
|
SAME
The images are same in scope of pixels
|
| Modifier and Type | Method and Description |
|---|---|
static ResultConclusion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultConclusion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultConclusion SAME
public static final ResultConclusion PERCEPTUALLY_SAME
public static final ResultConclusion DIFFER
public static final ResultConclusion NOT_TESTED
public static final ResultConclusion ERROR
public static ResultConclusion[] values()
for (ResultConclusion c : ResultConclusion.values()) System.out.println(c);
public static ResultConclusion 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 JBoss by Red Hat. All rights reserved.