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

br.com.objectos.sql.info.ForeignKeyInfoBuilder Maven / Gradle / Ivy

There is a newer version: 0.11.1
Show newest version
package br.com.objectos.sql.info;

import br.com.objectos.sql.core.meta.ForeignKeyAction;
import java.util.List;
import javax.annotation.Generated;

@Generated("br.com.objectos.auto.pojo.AutoPojoProcessor")
public interface ForeignKeyInfoBuilder {
  ForeignKeyInfoBuilderName name(String name);

  interface ForeignKeyInfoBuilderName {
    ForeignKeyInfoBuilderKeyPartList keyPartList(ForeignKeyPart... elements);

    ForeignKeyInfoBuilderKeyPartList keyPartList(List keyPartList);
  }

  interface ForeignKeyInfoBuilderKeyPartList {
    ForeignKeyInfoBuilderDeleteAction deleteAction(ForeignKeyAction deleteAction);
  }

  interface ForeignKeyInfoBuilderDeleteAction {
    ForeignKeyInfoBuilderUpdateAction updateAction(ForeignKeyAction updateAction);
  }

  interface ForeignKeyInfoBuilderUpdateAction {
    ForeignKeyInfo build();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy