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

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

package br.com.objectos.way.sql;

import java.util.List;

@javax.annotation.Generated("br.com.objectos.way.auto.pojo.AutoPojoProcessor")
final class GroupByInfoBuilderPojo
    implements 
    GroupByInfoBuilder, 
    GroupByInfoBuilder.GroupByInfoBuilderGroupList { 

  private List groupList;
  
  public GroupByInfoBuilderPojo() {
  }
  
  @Override
  public GroupByInfo build() {
    return new GroupByInfoPojo(this);
  }

  @Override
  public GroupByInfoBuilderGroupList groupList(List groupList) {  
    if (groupList == null) {
      throw new NullPointerException();
    }
    this.groupList = groupList;
    return this;
  }
  
  List groupList() {
    return groupList;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy