public class ColumnImpl extends AbstractColumn
Implementation of a column.
Modifier and Type | Class and Description |
---|---|
static class |
ColumnImpl.NameImpl |
static class |
ColumnImpl.TypeImpl |
Column.Name, Column.Type
Modifier | Constructor and Description |
---|---|
protected |
ColumnImpl(Table pTable,
Column.Name pName,
Column.Type pType) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getQName()
Returns the columns fully qualified name, which is
getTable().getQName() + "." + getName() . |
Table |
getTable()
Returns the columns table.
|
boolean |
isPrimaryKeyPart()
Returns whether this column is part of the primary key.
|
boolean |
isVirtual()
Returns whether this column is a true column or a virtual column.
|
equals, getCustomData, getLength, getName, getType, hasFixedLength, hashCode, isBinaryColumn, isNullable, isStringColumn, setCustomData, setLength, setLength, setNullable
protected ColumnImpl(Table pTable, Column.Name pName, Column.Type pType)
public Table getTable()
Column
Returns the columns table.
public java.lang.String getQName()
Column
Returns the columns fully qualified name, which is
getTable().getQName() + "." + getName()
.
public boolean isVirtual()
Column
Returns whether this column is a true column or a virtual column.
public boolean isPrimaryKeyPart()
Column
Returns whether this column is part of the primary key.