public enum SIMILARITYTYPE extends java.lang.Enum<SIMILARITYTYPE>
Enum Constant and Description |
---|
BINARY |
CUSTOM_DEFINED |
Modifier and Type | Method and Description |
---|---|
static SIMILARITYTYPE |
convertToType(java.lang.String typeString) |
static SIMILARITYTYPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SIMILARITYTYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SIMILARITYTYPE CUSTOM_DEFINED
public static final SIMILARITYTYPE BINARY
public static SIMILARITYTYPE[] values()
for (SIMILARITYTYPE c : SIMILARITYTYPE.values()) System.out.println(c);
public static SIMILARITYTYPE valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static SIMILARITYTYPE convertToType(java.lang.String typeString)