public static enum HashBuilderOperator.State extends Enum<HashBuilderOperator.State>
Enum Constant and Description |
---|
CLOSED
No longer needed
|
CONSUMING_INPUT
Operator accepts input
|
INPUT_SPILLED
Input has been finished and spilled
|
INPUT_UNSPILLED_AND_BUILT
Spilled input has been unspilled, LookupSource built from it
|
INPUT_UNSPILLING
Spilled input is being unspilled
|
LOOKUP_SOURCE_BUILT
LookupSource has been built and passed on without any spill occurring
|
SPILLING_INPUT
Memory revoking occurred during
CONSUMING_INPUT . |
Modifier and Type | Method and Description |
---|---|
static HashBuilderOperator.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HashBuilderOperator.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashBuilderOperator.State CONSUMING_INPUT
public static final HashBuilderOperator.State SPILLING_INPUT
CONSUMING_INPUT
. Operator accepts input and spills itpublic static final HashBuilderOperator.State LOOKUP_SOURCE_BUILT
public static final HashBuilderOperator.State INPUT_SPILLED
public static final HashBuilderOperator.State INPUT_UNSPILLING
public static final HashBuilderOperator.State INPUT_UNSPILLED_AND_BUILT
public static final HashBuilderOperator.State CLOSED
public static HashBuilderOperator.State[] values()
for (HashBuilderOperator.State c : HashBuilderOperator.State.values()) System.out.println(c);
public static HashBuilderOperator.State 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 © 2012–2022. All rights reserved.