Package com.iizigo.vs
Class CreateColumnData
java.lang.Object
com.iizigo.vs.CreateColumnData
Create column data used when creating a column or table. This class is a data holder.
- Author:
- Christopher Mindus
Field Summary
Modifier and TypeFieldDescriptionThe data type for the column, null for none, otherwise a validValue
data type.The description, used if provided, i.e.boolean
Flag for NULL allowed.The suggested column name, a valid an unique name will be used.Constructor Summary
ConstructorDescriptionCreateColumnData
(String name, Value.Type dataType, boolean isNullAllowed, String description) Creates a new instance and initializes the members with the same names as the parameters.Method Summary
Field Details
name
The suggested column name, a valid an unique name will be used. Upon return, this value is updated with the created name.dataType
The data type for the column, null for none, otherwise a validValue
data type.isNullAllowed
public boolean isNullAllowedFlag for NULL allowed.description
The description, used if provided, i.e. non-null.
Constructor Details
CreateColumnData
public CreateColumnData(String name, Value.Type dataType, boolean isNullAllowed, String description) Creates a new instance and initializes the members with the same names as the parameters.- Parameters:
name
- The suggested column name, a valid an unique name will be used.dataType
- The data type for the column, null for none, otherwise a validValue
data type.description
- The description, used if provided, i.e. non-null.