Uses of Class
oracle.pgx.api.frames.functions.ColumnRenaming
-
Packages that use ColumnRenaming Package Description oracle.pgx.api.frames This package contains classes and utilities to build and manipulate PGX Frames.oracle.pgx.api.frames.functions This package contains APIs to work with PGX Frames. -
-
Uses of ColumnRenaming in oracle.pgx.api.frames
Methods in oracle.pgx.api.frames with parameters of type ColumnRenaming Modifier and Type Method Description PgxFrame
PgxFrame. renameColumns(ColumnRenaming... columnsWithRenamings)
Returns a new PgxFrame in which the specified columns are renamed as specified Blocking version ofPgxFrame.renameColumnsAsync(ColumnRenaming...)
.PgxFuture<PgxFrame>
PgxFrame. renameColumnsAsync(ColumnRenaming... columnsWithRenamings)
Returns a new PgxFrame in which the specified columns are renamed as specifiedPgxFrame
PgxFrame. renameColumnsInPlace(ColumnRenaming... columnsWithRenamings)
Modifies the PgxFrame to rename the specified columns as specified Blocking version ofPgxFrame.renameColumnsInPlaceAsync(ColumnRenaming...)
.PgxFuture<PgxFrame>
PgxFrame. renameColumnsInPlaceAsync(ColumnRenaming... columnsWithRenamings)
Modifies the PgxFrame to rename the specified columns as specified -
Uses of ColumnRenaming in oracle.pgx.api.frames.functions
Methods in oracle.pgx.api.frames.functions that return ColumnRenaming Modifier and Type Method Description static ColumnRenaming
ColumnRenaming. renaming(java.lang.String columnName, java.lang.String newColumnName)
Create a new column renaming from the old column name to the new column name
-