public static enum TableCharacteristic.Semantics extends Enum<TableCharacteristic.Semantics>
| Enum Constant and Description |
|---|
ROW
Row semantics means that the result of the Window TableFunction
is decided on a row-by-row basis.
|
SET
Set semantics means that the outcome of the Window TableFunction
depends on how the data is partitioned.
|
| Modifier and Type | Method and Description |
|---|---|
static TableCharacteristic.Semantics |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableCharacteristic.Semantics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableCharacteristic.Semantics ROW
public static final TableCharacteristic.Semantics SET
public static TableCharacteristic.Semantics[] values()
for (TableCharacteristic.Semantics c : TableCharacteristic.Semantics.values()) System.out.println(c);
public static TableCharacteristic.Semantics 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 Apache Software Foundation. All Rights Reserved.