java.io.Serializable, java.lang.Comparable<ListCompareAlgorithm>public enum ListCompareAlgorithm extends java.lang.Enum<ListCompareAlgorithm>
| Enum Constant | Description |
|---|---|
AS_SET |
|
LEVENSHTEIN_DISTANCE |
|
SIMPLE |
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.Class<? extends PropertyChangeAppender<ListChange>> |
getAppenderClass() |
|
static ListCompareAlgorithm |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ListCompareAlgorithm[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListCompareAlgorithm SIMPLE
public static final ListCompareAlgorithm LEVENSHTEIN_DISTANCE
public static final ListCompareAlgorithm AS_SET
public static ListCompareAlgorithm[] values()
for (ListCompareAlgorithm c : ListCompareAlgorithm.values()) System.out.println(c);
public static ListCompareAlgorithm 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 java.lang.Class<? extends PropertyChangeAppender<ListChange>> getAppenderClass()