All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.objectos.way.schema.ddl.CreateTableBuilder Maven / Gradle / Ivy

package br.com.objectos.way.schema.ddl;

import java.util.List;
import javax.annotation.Generated;

@Generated({
    "br.com.objectos.way.pojo.compiler.PojoCompiler",
    "br.com.objectos.way.pojo.plugin.ListPlugin",
    "br.com.objectos.way.pojo.plugin.StandardBuilderPropertyAction"
})
public interface CreateTableBuilder {
  CreateTableBuilderColumnDefList columnDefList(List columnDefList);

  CreateTableBuilderColumnDefList columnDefList(ColumnDef... elements);

  interface CreateTableBuilderColumnDefList {
    CreateTableBuilderPrimaryKeyDef primaryKeyDef(PrimaryKeyDef primaryKeyDef);
  }

  interface CreateTableBuilderPrimaryKeyDef {
    CreateTable build();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy