
br.com.objectos.schema.info.IntDefaultValueBuilderPojo Maven / Gradle / Ivy
The newest version!
package br.com.objectos.schema.info;
import javax.annotation.Generated;
@Generated({
"br.com.objectos.pojo.compiler.PojoCompiler",
"br.com.objectos.pojo.plugin.StandardBuilderPropertyAction"
})
final class IntDefaultValueBuilderPojo implements IntDefaultValueBuilder, IntDefaultValueBuilder.IntDefaultValueBuilderSet, IntDefaultValueBuilder.IntDefaultValueBuilderNullValue, IntDefaultValueBuilder.IntDefaultValueBuilderIntValue {
private boolean set;
private boolean nullValue;
private int intValue;
public IntDefaultValueBuilderPojo() {
}
@Override
public IntDefaultValue build() {
return new IntDefaultValuePojo(this);
}
@Override
public IntDefaultValueBuilder.IntDefaultValueBuilderSet set(boolean set) {
this.set = set;
return this;
}
boolean ___get___set() {
return set;
}
@Override
public IntDefaultValueBuilder.IntDefaultValueBuilderNullValue nullValue(boolean nullValue) {
this.nullValue = nullValue;
return this;
}
boolean ___get___nullValue() {
return nullValue;
}
@Override
public IntDefaultValueBuilder.IntDefaultValueBuilderIntValue intValue(int intValue) {
this.intValue = intValue;
return this;
}
int ___get___intValue() {
return intValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy