Class FieldMetadata

java.lang.Object
org.postgresql.jdbc.FieldMetadata
All Implemented Interfaces:
CanEstimateSize

public class FieldMetadata extends Object implements CanEstimateSize
This is an internal class to hold field metadata info like table name, column name, etc. This class is not meant to be used outside of pgjdbc.
  • Field Details

    • columnName

      final String columnName
    • tableName

      final String tableName
    • schemaName

      final String schemaName
    • nullable

      final int nullable
    • autoIncrement

      final boolean autoIncrement
  • Constructor Details

    • FieldMetadata

      public FieldMetadata(String columnName)
    • FieldMetadata

      FieldMetadata(String columnName, String tableName, String schemaName, int nullable, boolean autoIncrement)
  • Method Details