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

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

package br.com.objectos.way.sql;

@javax.annotation.Generated("br.com.objectos.way.auto.pojo.AutoPojoProcessor")
final class IntegerQualifiedColumnInfoBuilderPojo
    implements 
    IntegerQualifiedColumnInfoBuilder, 
    IntegerQualifiedColumnInfoBuilder.IntegerQualifiedColumnInfoBuilderTableInfo, 
    IntegerQualifiedColumnInfoBuilder.IntegerQualifiedColumnInfoBuilderColumnInfo { 

  private TableInfo tableInfo;
  private IntegerColumnInfo columnInfo;
  
  public IntegerQualifiedColumnInfoBuilderPojo() {
  }
  
  @Override
  public IntegerQualifiedColumnInfo build() {
    return new IntegerQualifiedColumnInfoPojo(this);
  }

  @Override
  public IntegerQualifiedColumnInfoBuilderTableInfo tableInfo(TableInfo tableInfo) {  
    if (tableInfo == null) {
      throw new NullPointerException();
    }
    this.tableInfo = tableInfo;
    return this;
  }
  
  @Override
  public IntegerQualifiedColumnInfoBuilderColumnInfo columnInfo(IntegerColumnInfo columnInfo) {  
    if (columnInfo == null) {
      throw new NullPointerException();
    }
    this.columnInfo = columnInfo;
    return this;
  }
  
  TableInfo tableInfo() {
    return tableInfo;
  }
  
  IntegerColumnInfo columnInfo() {
    return columnInfo;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy