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

br.com.objectos.way.sql.OrderByInfoBuilderPojo 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 OrderByInfoBuilderPojo
    implements 
    OrderByInfoBuilder, 
    OrderByInfoBuilder.OrderByInfoBuilderOrderList { 

  private List orderList;
  
  public OrderByInfoBuilderPojo() {
  }
  
  @Override
  public OrderByInfo build() {
    return new OrderByInfoPojo(this);
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy