Package com.iizigo.vs

Class CreateColumnData

java.lang.Object
com.iizigo.vs.CreateColumnData

public class CreateColumnData extends Object
Create column data used when creating a column or table. This class is a data holder.
Author:
Christopher Mindus
  • Field Details

    • name

      public String name
      The suggested column name, a valid an unique name will be used. Upon return, this value is updated with the created name.
    • dataType

      public Value.Type dataType
      The data type for the column, null for none, otherwise a valid Value data type.
    • isNullAllowed

      public boolean isNullAllowed
      Flag for NULL allowed.
    • description

      public String 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 valid Value data type.
      description - The description, used if provided, i.e. non-null.