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

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

package br.com.objectos.way.sql;

@javax.annotation.Generated("br.com.objectos.way.auto.pojo.AutoPojoProcessor")
final class SchemaInfoBuilderPojo
    implements 
    SchemaInfoBuilder, 
    SchemaInfoBuilder.SchemaInfoBuilderName { 

  private String name;
  
  public SchemaInfoBuilderPojo() {
  }
  
  @Override
  public SchemaInfo build() {
    return new SchemaInfoPojo(this);
  }

  @Override
  public SchemaInfoBuilderName name(String name) {  
    if (name == null) {
      throw new NullPointerException();
    }
    this.name = name;
    return this;
  }
  
  String name() {
    return name;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy