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

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

package br.com.objectos.way.sql;

import java.sql.PreparedStatement;

@javax.annotation.Generated("br.com.objectos.way.auto.pojo.AutoPojoProcessor")
final class MaybeExeBuilderPojo
    implements 
    MaybeExeBuilder, 
    MaybeExeBuilder.MaybeExeBuilderStatement { 

  private PreparedStatement statement;
  
  public MaybeExeBuilderPojo() {
  }
  
  @Override
  public MaybeExe build() {
    return new MaybeExePojo(this);
  }

  @Override
  public MaybeExeBuilderStatement statement(PreparedStatement statement) {  
    if (statement == null) {
      throw new NullPointerException();
    }
    this.statement = statement;
    return this;
  }
  
  PreparedStatement statement() {
    return statement;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy