public enum MatchFinderAlgorithm extends Enum<MatchFinderAlgorithm>
| Enum Constant and Description |
|---|
BINARY_TREE_2 |
BINARY_TREE_4 |
| Modifier and Type | Method and Description |
|---|---|
int |
getId()
Get the id that this match finder algorithm is identified by when used
with the LZMA encoder.
|
String |
toString() |
static MatchFinderAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchFinderAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchFinderAlgorithm BINARY_TREE_2
public static final MatchFinderAlgorithm BINARY_TREE_4
public static MatchFinderAlgorithm[] values()
for (MatchFinderAlgorithm c : MatchFinderAlgorithm.values()) System.out.println(c);
public static MatchFinderAlgorithm valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic int getId()
public String toString()
toString in class Enum<MatchFinderAlgorithm>