public enum PredefinedStrategy extends Enum<PredefinedStrategy>
| Enum Constant and Description |
|---|
FACEPATCH_EUCLIDEAN |
LOCAL_BINARY_PATTERN |
LOCAL_TRINARY_PATTERN |
SIFT |
| Modifier and Type | Method and Description |
|---|---|
abstract String |
description() |
abstract FaceSimilarityEngine<?,?,FImage> |
strategy() |
static PredefinedStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PredefinedStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredefinedStrategy SIFT
public static final PredefinedStrategy LOCAL_TRINARY_PATTERN
public static final PredefinedStrategy FACEPATCH_EUCLIDEAN
public static final PredefinedStrategy LOCAL_BINARY_PATTERN
public static PredefinedStrategy[] values()
for (PredefinedStrategy c : PredefinedStrategy.values()) System.out.println(c);
public static PredefinedStrategy 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 abstract FaceSimilarityEngine<?,?,FImage> strategy()
public abstract String description()