Package org.n52.series.db.generator
Class AbstractGenerator.ColumnMetadata
- java.lang.Object
-
- org.n52.series.db.generator.AbstractGenerator.ColumnMetadata
-
- All Implemented Interfaces:
AbstractGenerator.Meta
- Enclosing class:
- AbstractGenerator
public static class AbstractGenerator.ColumnMetadata extends Object implements AbstractGenerator.Meta
-
-
Constructor Summary
Constructors Constructor Description ColumnMetadata(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetComment()StringgetDefaultValue()StringgetName()StringgetNotNull()StringgetSqlType()StringgetType()voidsetComment(String comment)voidsetDefaultValue(String defaultValue)voidsetNotNull(String notNull)voidsetSqlType(String sqlType)voidsetType(String type)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.n52.series.db.generator.AbstractGenerator.Meta
check
-
-
-
-
Constructor Detail
-
ColumnMetadata
public ColumnMetadata(String name)
-
-
Method Detail
-
getName
public String getName()
-
getComment
public String getComment()
-
setComment
public void setComment(String comment)
-
getSqlType
public String getSqlType()
-
setSqlType
public void setSqlType(String sqlType)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getDefaultValue
public String getDefaultValue()
-
setDefaultValue
public void setDefaultValue(String defaultValue)
-
getNotNull
public String getNotNull()
-
setNotNull
public void setNotNull(String notNull)
-
-