Enum FeatureDetector
- java.lang.Object
-
- java.lang.Enum<FeatureDetector>
-
- io.appium.java_client.imagecomparison.FeatureDetector
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FeatureDetector>
public enum FeatureDetector extends java.lang.Enum<FeatureDetector>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeatureDetector
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FeatureDetector[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AKAZE
public static final FeatureDetector AKAZE
-
AGAST
public static final FeatureDetector AGAST
-
BRISK
public static final FeatureDetector BRISK
-
FAST
public static final FeatureDetector FAST
-
GFTT
public static final FeatureDetector GFTT
-
KAZE
public static final FeatureDetector KAZE
-
MSER
public static final FeatureDetector MSER
-
SIFT
public static final FeatureDetector SIFT
-
ORB
public static final FeatureDetector ORB
-
-
Method Detail
-
values
public static FeatureDetector[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FeatureDetector c : FeatureDetector.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeatureDetector valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-