public static enum SearchBenchmark.Input extends Enum<SearchBenchmark.Input>
| Enum Constant and Description |
|---|
PREDICTABLE |
RANDOM_256B |
RANDOM_2KB |
UNPREDICTABLE |
WORST_CASE |
| Modifier and Type | Method and Description |
|---|---|
static SearchBenchmark.Input |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchBenchmark.Input[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchBenchmark.Input RANDOM_256B
public static final SearchBenchmark.Input RANDOM_2KB
public static final SearchBenchmark.Input PREDICTABLE
public static final SearchBenchmark.Input UNPREDICTABLE
public static final SearchBenchmark.Input WORST_CASE
public static SearchBenchmark.Input[] values()
for (SearchBenchmark.Input c : SearchBenchmark.Input.values()) System.out.println(c);
public static SearchBenchmark.Input 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.