Uses of Class
org.apache.flink.types.RowKind
-
Packages that use RowKind Package Description org.apache.flink.types -
-
Uses of RowKind in org.apache.flink.types
Methods in org.apache.flink.types that return RowKind Modifier and Type Method Description static RowKindRowKind. fromByteValue(byte value)Creates aRowKindfrom the given byte value.RowKindRow. getKind()Returns the kind of change that this row describes in a changelog.static RowKindRowKind. valueOf(String name)Returns the enum constant of this type with the specified name.static RowKind[]RowKind. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.flink.types with parameters of type RowKind Modifier and Type Method Description static RowRowUtils. createRowWithNamedPositions(RowKind kind, Object[] fieldByPosition, LinkedHashMap<String,Integer> positionByName)Internal utility for creating a row in static named-position field mode.static RowRow. ofKind(RowKind kind, Object... values)Creates a fixed-length row in position-based field mode with given kind and assigns the given values to the row's fields.voidRow. setKind(RowKind kind)Sets the kind of change that this row describes in a changelog.static RowRow. withNames(RowKind kind)Creates a variable-length row in name-based field mode.static RowRow. withPositions(RowKind kind, int arity)Creates a fixed-length row in position-based field mode.Constructors in org.apache.flink.types with parameters of type RowKind Constructor Description Row(RowKind kind, int arity)Creates a fixed-length row in position-based field mode.
-