All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hotrod.runtime.livesql.metadata.Column Maven / Gradle / Ivy

There is a newer version: 4.8.1
Show newest version
package org.hotrod.runtime.livesql.metadata;

import org.hotrod.runtime.livesql.queries.select.QueryWriter;
import org.hotrod.runtime.livesql.queries.select.ReferenceableExpression;

public interface Column extends ReferenceableExpression {

  String getName();

  TableOrView getObjectInstance();

  String getCatalog();

  String getSchema();

  String getObjectName();

  String getType();

  Integer getColumnSize();

  Integer getDecimalDigits();

  boolean isNullable();

  String getDefaultValue();

  boolean isLob();

  String getProperty();

  void renderSimpleNameTo(QueryWriter w);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy