public class Column extends Object
Modifier and Type | Field and Description |
---|---|
boolean |
assignedByDatabase |
boolean |
assignNextNumber
flag to know if column is a autonumber.
|
boolean |
caseSensitive |
Class |
clazz |
String |
columnLowerName
name of column in table that stores in lowercase, for case sensitive Databases
|
String |
columnName
name of column in table
|
int |
decimalPlaces
amount of decimal places for a numeric column.
|
Link |
fkeyLink |
int |
fkeyLinkPos |
Column |
fkeyToColumn |
boolean |
foreignKey
flag to know if this is a foreign key.
|
boolean |
fullTextIndex |
boolean |
guid
flag to know if column is a global unique identifier.
|
int |
maxLength
maximum length of column.
|
boolean |
primaryKey
is this a primary key column.
|
String |
propertyName
name of property that column is mapped to.
|
boolean |
readOnly |
Table |
table
table that this column belongs to.
|
int |
type
type of column variable, java.sql.Types.
|
boolean |
unicode |
Constructor and Description |
---|
Column() |
Column(String columnName) |
Column(String columnName,
boolean fkey) |
Column(String columnName,
String propertyName) |
Column(String columnName,
String propertyName,
int type) |
Column(String columnName,
String propertyName,
int type,
int maxLength) |
Modifier and Type | Method and Description |
---|---|
Method |
getGetMethod()
Method used to get property value.
|
Method |
getSetMethod()
Method used to set property value.
|
int |
getSqlType() |
public Table table
public String columnName
public String columnLowerName
public String propertyName
public boolean primaryKey
public boolean foreignKey
public Class clazz
public int type
public int maxLength
public int decimalPlaces
public boolean assignNextNumber
public boolean guid
public boolean unicode
public boolean fullTextIndex
public Link fkeyLink
public int fkeyLinkPos
public Column fkeyToColumn
public boolean caseSensitive
public boolean assignedByDatabase
public boolean readOnly
Copyright © 1999–2019 ViaOA. All rights reserved.