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 SummaryFieldsModifier and TypeFieldDescriptionThe data type for the column, null for none, otherwise a valid- Valuedata type.The description, used if provided, i.e.- booleanFlag for NULL allowed.The suggested column name, a valid an unique name will be used.
- Constructor SummaryConstructorsConstructorDescription- 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.
- Method Summary
- Field Details- nameThe suggested column name, a valid an unique name will be used. Upon return, this value is updated with the created name.
- dataTypeThe data type for the column, null for none, otherwise a valid- Valuedata type.
- isNullAllowedpublic boolean isNullAllowedFlag for NULL allowed.
- descriptionThe description, used if provided, i.e. non-null.
 
- Constructor Details- CreateColumnDatapublic 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 valid- Valuedata type.
- description- The description, used if provided, i.e. non-null.