Class TableInfo.ColumnInfo

    • Field Detail

      • name

        private final String name
      • type

        private final String type
      • sqlType

        private final Integer sqlType
      • size

        private final int size
      • isNullable

        private final boolean isNullable
      • isUnique

        private final boolean isUnique
    • Constructor Detail

      • ColumnInfo

        public ColumnInfo​(String name,
                          String type,
                          Integer sqlType,
                          int size,
                          boolean isNullable,
                          boolean isUnique)
        Create a new ColumnInfo object.
        Parameters:
        name - The name of the column
        type - The type of the column (int, float, varchar, ...) etc.
        size - The size of the column
        isNullable - If the column is nullable
        isUnique - If the column must have unique values