public static enum SearchRealDataBenchmark.Algorithm extends Enum<SearchRealDataBenchmark.Algorithm>
| Enum Constant and Description |
|---|
AHO_CORASIC |
BITAP |
KMP |
| Modifier and Type | Method and Description |
|---|---|
static SearchRealDataBenchmark.Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchRealDataBenchmark.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchRealDataBenchmark.Algorithm AHO_CORASIC
public static final SearchRealDataBenchmark.Algorithm KMP
public static final SearchRealDataBenchmark.Algorithm BITAP
public static SearchRealDataBenchmark.Algorithm[] values()
for (SearchRealDataBenchmark.Algorithm c : SearchRealDataBenchmark.Algorithm.values()) System.out.println(c);
public static SearchRealDataBenchmark.Algorithm 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 nullCopyright © 2008–2026 The Netty Project. All rights reserved.