Package oracle.pgx.api.frames.functions
Class ColumnRenaming
- java.lang.Object
-
- oracle.pgx.api.frames.functions.ColumnRenaming
-
public class ColumnRenaming extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getColumnName()
Retrieve the name of the original column that should be renamedjava.lang.String
getNewColumnName()
Retrieve the name that the column should have after renamingstatic 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
-
-
-
Method Detail
-
renaming
public static 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- Parameters:
columnName
- the name of the column to renamenewColumnName
- the new name to give to the column- Returns:
- the renaming object
-
getColumnName
public java.lang.String getColumnName()
Retrieve the name of the original column that should be renamed- Returns:
- the name of the column that should be renamed
-
getNewColumnName
public java.lang.String getNewColumnName()
Retrieve the name that the column should have after renaming- Returns:
- the name of the column after renaming
-
-