public static enum RowSignature.Finalization extends Enum<RowSignature.Finalization>
| Enum Constant and Description |
|---|
NO
Aggregation results will not be finalized.
|
UNKNOWN
Aggregation results may or may not be finalized.
|
YES
Aggregation results will be finalized.
|
| Modifier and Type | Method and Description |
|---|---|
static RowSignature.Finalization |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowSignature.Finalization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowSignature.Finalization YES
public static final RowSignature.Finalization NO
public static final RowSignature.Finalization UNKNOWN
public static RowSignature.Finalization[] values()
for (RowSignature.Finalization c : RowSignature.Finalization.values()) System.out.println(c);
public static RowSignature.Finalization 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 © 2011–2022 The Apache Software Foundation. All rights reserved.