public static enum LevenshteinDistanceAligment.Op extends java.lang.Enum<LevenshteinDistanceAligment.Op>
| Enum Constant and Description |
|---|
Delete |
Insert |
Match |
Start |
Substitute |
| Modifier and Type | Method and Description |
|---|---|
static LevenshteinDistanceAligment.Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LevenshteinDistanceAligment.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LevenshteinDistanceAligment.Op Start
public static final LevenshteinDistanceAligment.Op Match
public static final LevenshteinDistanceAligment.Op Insert
public static final LevenshteinDistanceAligment.Op Delete
public static final LevenshteinDistanceAligment.Op Substitute
public static LevenshteinDistanceAligment.Op[] values()
for (LevenshteinDistanceAligment.Op c : LevenshteinDistanceAligment.Op.values()) System.out.println(c);
public static LevenshteinDistanceAligment.Op 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 null