
br.com.objectos.bvmf.bdr.BdrLinkBuilderPojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bvmf Show documentation
Show all versions of bvmf Show documentation
Coletores de informações do site BM&F Bovespa.
The newest version!
package br.com.objectos.bvmf.bdr;
import javax.annotation.Generated;
@Generated("br.com.objectos.auto.pojo.AutoPojoProcessor")
final class BdrLinkBuilderPojo implements BdrLinkBuilder, BdrLinkBuilder.BdrLinkBuilderHref, BdrLinkBuilder.BdrLinkBuilderCategoria {
private String href;
private BdrCategoria categoria;
public BdrLinkBuilderPojo() {
}
@Override
public BdrLink build() {
return new BdrLinkPojo(this);
}
@Override
public BdrLinkBuilder.BdrLinkBuilderHref href(String href) {
if (href == null) {
throw new NullPointerException();
}
this.href = href;
return this;
}
@Override
public BdrLinkBuilder.BdrLinkBuilderCategoria categoria(BdrCategoria categoria) {
if (categoria == null) {
throw new NullPointerException();
}
this.categoria = categoria;
return this;
}
String ___get___href() {
return href;
}
BdrCategoria ___get___categoria() {
return categoria;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy