public enum PostgreSQLReadableMetadata extends Enum<PostgreSQLReadableMetadata>
PostgreSQLTableSource
.Enum Constant and Description |
---|
DATABASE_NAME
Name of the database that contain the row.
|
OP_TS
It indicates the time that the change was made in the database.
|
SCHEMA_NAME
Name of the schema that contain the row.
|
TABLE_NAME
Name of the table that contain the row.
|
Modifier and Type | Method and Description |
---|---|
MetadataConverter |
getConverter() |
org.apache.flink.table.types.DataType |
getDataType() |
String |
getKey() |
static PostgreSQLReadableMetadata |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostgreSQLReadableMetadata[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostgreSQLReadableMetadata TABLE_NAME
public static final PostgreSQLReadableMetadata SCHEMA_NAME
public static final PostgreSQLReadableMetadata DATABASE_NAME
public static final PostgreSQLReadableMetadata OP_TS
public static PostgreSQLReadableMetadata[] values()
for (PostgreSQLReadableMetadata c : PostgreSQLReadableMetadata.values()) System.out.println(c);
public static PostgreSQLReadableMetadata 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 nullpublic String getKey()
public org.apache.flink.table.types.DataType getDataType()
public MetadataConverter getConverter()
Copyright © 2024 The Apache Software Foundation. All rights reserved.