public class ColumnDef extends Object
Constructor and Description |
---|
ColumnDef() |
ColumnDef(javax.persistence.Column c) |
Modifier and Type | Method and Description |
---|---|
String |
getColumnDefinition() |
String |
getComment() |
int |
getLength() |
String |
getName() |
int |
getPrecision() |
int |
getScale() |
String |
getTable() |
boolean |
isInsertable() |
boolean |
isNullable() |
boolean |
isUnique() |
boolean |
isUpdatable() |
void |
setColumnDefinition(String columnDefinition) |
void |
setComment(String comment) |
void |
setInsertable(boolean insertable) |
void |
setLength(int length) |
void |
setName(String name) |
void |
setNullable(boolean nullable) |
void |
setPrecision(int precision) |
void |
setScale(int scale) |
void |
setTable(String table) |
void |
setUnique(boolean unique) |
void |
setUpdatable(boolean updatable) |
public ColumnDef()
public ColumnDef(javax.persistence.Column c)
public String getName()
public void setName(String name)
public boolean isUnique()
public void setUnique(boolean unique)
public boolean isNullable()
public void setNullable(boolean nullable)
public boolean isInsertable()
public void setInsertable(boolean insertable)
public boolean isUpdatable()
public void setUpdatable(boolean updatable)
public String getColumnDefinition()
public void setColumnDefinition(String columnDefinition)
public String getTable()
public void setTable(String table)
public int getLength()
public void setLength(int length)
public int getPrecision()
public void setPrecision(int precision)
public int getScale()
public void setScale(int scale)
public String getComment()
public void setComment(String comment)
Copyright © 2020. All rights reserved.