Class ResultSchema.Column

  • Enclosing class:
    ResultSchema

    public static final class ResultSchema.Column
    extends java.lang.Object
    A single column.
    • Constructor Summary

      Constructors 
      Constructor Description
      Column​(Name columnName, SqlType type)
      Creates a column.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Name getName()
      Returns the name of the column.
      SqlType getType()
      Returns the SQL type of the column.
      TypeTag getTypeTag()
      Returns the type tag of the column.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Column

        public Column​(Name columnName,
                      SqlType type)
        Creates a column.
        Parameters:
        columnName - Column name.
        type - SQL type.
    • Method Detail

      • getName

        public Name getName()
        Returns the name of the column.
        Returns:
        The name.
      • getType

        public SqlType getType()
        Returns the SQL type of the column.
        Returns:
        The type.
      • getTypeTag

        public TypeTag getTypeTag()
        Returns the type tag of the column.
        Returns:
        The type tag.