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

br.com.objectos.way.sql.ListSqlBuilder Maven / Gradle / Ivy

package br.com.objectos.way.sql;

import com.google.common.base.Optional;
import java.util.List;

@javax.annotation.Generated("br.com.objectos.way.auto.pojo.AutoPojoProcessor")
public interface ListSqlBuilder {

  ListSqlBuilderSelectableList selectableList(List selectableList);
  
  interface ListSqlBuilderSelectableList {
    ListSqlBuilderTableReference tableReference(TableReference tableReference);
  }
  
  interface ListSqlBuilderTableReference {
    ListSqlBuilderWhereCondition whereCondition(Optional whereCondition);
  }
  
  interface ListSqlBuilderWhereCondition {
    ListSqlBuilderGroupByInfo groupByInfo(Optional groupByInfo);
  }
  
  interface ListSqlBuilderGroupByInfo {
    ListSqlBuilderHavingCondition havingCondition(Optional havingCondition);
  }
  
  interface ListSqlBuilderHavingCondition {
    ListSqlBuilderOrderByInfo orderByInfo(Optional orderByInfo);
  }
    
  interface ListSqlBuilderOrderByInfo {
    ListSql build();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy