public static enum LongestCommonSubstring.Formula extends java.lang.Enum<LongestCommonSubstring.Formula>
Modifier and Type | Method and Description |
---|---|
double |
compute(int removed,
int shortlen,
int longlen) |
static LongestCommonSubstring.Formula |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LongestCommonSubstring.Formula[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LongestCommonSubstring.Formula OVERLAP
public static final LongestCommonSubstring.Formula DICE
public static final LongestCommonSubstring.Formula JACCARD
public static LongestCommonSubstring.Formula[] values()
for (LongestCommonSubstring.Formula c : LongestCommonSubstring.Formula.values()) System.out.println(c);
public static LongestCommonSubstring.Formula 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 double compute(int removed, int shortlen, int longlen)