Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.rosetta.model.metafields.ReferenceWithMetaInteger Maven / Gradle / Ivy
package com.rosetta.model.metafields;
import com.rosetta.model.lib.RosettaModelObject;
import com.rosetta.model.lib.RosettaModelObjectBuilder;
import com.rosetta.model.lib.annotations.RosettaAttribute;
import com.rosetta.model.lib.annotations.RosettaDataType;
import com.rosetta.model.lib.meta.BasicRosettaMetaData;
import com.rosetta.model.lib.meta.Reference;
import com.rosetta.model.lib.meta.ReferenceWithMeta;
import com.rosetta.model.lib.meta.ReferenceWithMeta.ReferenceWithMetaBuilder;
import com.rosetta.model.lib.meta.RosettaMetaData;
import com.rosetta.model.lib.path.RosettaPath;
import com.rosetta.model.lib.process.AttributeMeta;
import com.rosetta.model.lib.process.BuilderMerger;
import com.rosetta.model.lib.process.BuilderProcessor;
import com.rosetta.model.lib.process.Processor;
import java.util.Objects;
import static java.util.Optional.ofNullable;
/**
* @version 1
*/
@RosettaDataType(value="ReferenceWithMetaInteger", builder=ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilderImpl.class, version="0.0.0")
public interface ReferenceWithMetaInteger extends RosettaModelObject, ReferenceWithMeta {
ReferenceWithMetaIntegerMeta metaData = new ReferenceWithMetaIntegerMeta();
/*********************** Getter Methods ***********************/
Integer getValue();
String getGlobalReference();
String getExternalReference();
Reference getReference();
/*********************** Build Methods ***********************/
ReferenceWithMetaInteger build();
ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder toBuilder();
static ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder builder() {
return new ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilderImpl();
}
/*********************** Utility Methods ***********************/
@Override
default RosettaMetaData extends ReferenceWithMetaInteger> metaData() {
return metaData;
}
@Override
default Class extends ReferenceWithMetaInteger> getType() {
return ReferenceWithMetaInteger.class;
}
@Override
default Class getValueType() {
return Integer.class;
}
@Override
default void process(RosettaPath path, Processor processor) {
processor.processBasic(path.newSubPath("value"), Integer.class, getValue(), this);
processor.processBasic(path.newSubPath("globalReference"), String.class, getGlobalReference(), this, AttributeMeta.META);
processor.processBasic(path.newSubPath("externalReference"), String.class, getExternalReference(), this, AttributeMeta.META);
processRosetta(path.newSubPath("reference"), processor, Reference.class, getReference());
}
/*********************** Builder Interface ***********************/
interface ReferenceWithMetaIntegerBuilder extends ReferenceWithMetaInteger, RosettaModelObjectBuilder, ReferenceWithMeta.ReferenceWithMetaBuilder {
Reference.ReferenceBuilder getOrCreateReference();
Reference.ReferenceBuilder getReference();
ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder setValue(Integer value);
ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder setGlobalReference(String globalReference);
ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder setExternalReference(String externalReference);
ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder setReference(Reference reference);
@Override
default void process(RosettaPath path, BuilderProcessor processor) {
processor.processBasic(path.newSubPath("value"), Integer.class, getValue(), this);
processor.processBasic(path.newSubPath("globalReference"), String.class, getGlobalReference(), this, AttributeMeta.META);
processor.processBasic(path.newSubPath("externalReference"), String.class, getExternalReference(), this, AttributeMeta.META);
processRosetta(path.newSubPath("reference"), processor, Reference.ReferenceBuilder.class, getReference());
}
ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder prune();
}
/*********************** Immutable Implementation of ReferenceWithMetaInteger ***********************/
class ReferenceWithMetaIntegerImpl implements ReferenceWithMetaInteger {
private final Integer value;
private final String globalReference;
private final String externalReference;
private final Reference reference;
protected ReferenceWithMetaIntegerImpl(ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder builder) {
this.value = builder.getValue();
this.globalReference = builder.getGlobalReference();
this.externalReference = builder.getExternalReference();
this.reference = ofNullable(builder.getReference()).map(f->f.build()).orElse(null);
}
@Override
@RosettaAttribute("value")
public Integer getValue() {
return value;
}
@Override
@RosettaAttribute("globalReference")
public String getGlobalReference() {
return globalReference;
}
@Override
@RosettaAttribute("externalReference")
public String getExternalReference() {
return externalReference;
}
@Override
@RosettaAttribute("address")
public Reference getReference() {
return reference;
}
@Override
public ReferenceWithMetaInteger build() {
return this;
}
@Override
public ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder toBuilder() {
ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder builder = builder();
setBuilderFields(builder);
return builder;
}
protected void setBuilderFields(ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder builder) {
ofNullable(getValue()).ifPresent(builder::setValue);
ofNullable(getGlobalReference()).ifPresent(builder::setGlobalReference);
ofNullable(getExternalReference()).ifPresent(builder::setExternalReference);
ofNullable(getReference()).ifPresent(builder::setReference);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || !(o instanceof RosettaModelObject) || !getType().equals(((RosettaModelObject)o).getType())) return false;
ReferenceWithMetaInteger _that = getType().cast(o);
if (!Objects.equals(value, _that.getValue())) return false;
if (!Objects.equals(globalReference, _that.getGlobalReference())) return false;
if (!Objects.equals(externalReference, _that.getExternalReference())) return false;
if (!Objects.equals(reference, _that.getReference())) return false;
return true;
}
@Override
public int hashCode() {
int _result = 0;
_result = 31 * _result + (value != null ? value.hashCode() : 0);
_result = 31 * _result + (globalReference != null ? globalReference.hashCode() : 0);
_result = 31 * _result + (externalReference != null ? externalReference.hashCode() : 0);
_result = 31 * _result + (reference != null ? reference.hashCode() : 0);
return _result;
}
@Override
public String toString() {
return "ReferenceWithMetaInteger {" +
"value=" + this.value + ", " +
"globalReference=" + this.globalReference + ", " +
"externalReference=" + this.externalReference + ", " +
"reference=" + this.reference +
'}';
}
}
/*********************** Builder Implementation of ReferenceWithMetaInteger ***********************/
class ReferenceWithMetaIntegerBuilderImpl implements ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder {
protected Integer value;
protected String globalReference;
protected String externalReference;
protected Reference.ReferenceBuilder reference;
public ReferenceWithMetaIntegerBuilderImpl() {
}
@Override
@RosettaAttribute("value")
public Integer getValue() {
return value;
}
@Override
@RosettaAttribute("globalReference")
public String getGlobalReference() {
return globalReference;
}
@Override
@RosettaAttribute("externalReference")
public String getExternalReference() {
return externalReference;
}
@Override
@RosettaAttribute("address")
public Reference.ReferenceBuilder getReference() {
return reference;
}
@Override
public Reference.ReferenceBuilder getOrCreateReference() {
Reference.ReferenceBuilder result;
if (reference!=null) {
result = reference;
}
else {
result = reference = Reference.builder();
}
return result;
}
@Override
@RosettaAttribute("value")
public ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder setValue(Integer value) {
this.value = value==null?null:value;
return this;
}
@Override
@RosettaAttribute("globalReference")
public ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder setGlobalReference(String globalReference) {
this.globalReference = globalReference==null?null:globalReference;
return this;
}
@Override
@RosettaAttribute("externalReference")
public ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder setExternalReference(String externalReference) {
this.externalReference = externalReference==null?null:externalReference;
return this;
}
@Override
@RosettaAttribute("address")
public ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder setReference(Reference reference) {
this.reference = reference==null?null:reference.toBuilder();
return this;
}
@Override
public ReferenceWithMetaInteger build() {
return new ReferenceWithMetaInteger.ReferenceWithMetaIntegerImpl(this);
}
@Override
public ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder toBuilder() {
return this;
}
@SuppressWarnings("unchecked")
@Override
public ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder prune() {
if (reference!=null && !reference.prune().hasData()) reference = null;
return this;
}
@Override
public boolean hasData() {
if (getValue()!=null) return true;
if (getGlobalReference()!=null) return true;
if (getExternalReference()!=null) return true;
if (getReference()!=null && getReference().hasData()) return true;
return false;
}
@SuppressWarnings("unchecked")
@Override
public ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder merge(RosettaModelObjectBuilder other, BuilderMerger merger) {
ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder o = (ReferenceWithMetaInteger.ReferenceWithMetaIntegerBuilder) other;
merger.mergeRosetta(getReference(), o.getReference(), this::setReference);
merger.mergeBasic(getValue(), o.getValue(), this::setValue);
merger.mergeBasic(getGlobalReference(), o.getGlobalReference(), this::setGlobalReference);
merger.mergeBasic(getExternalReference(), o.getExternalReference(), this::setExternalReference);
return this;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || !(o instanceof RosettaModelObject) || !getType().equals(((RosettaModelObject)o).getType())) return false;
ReferenceWithMetaInteger _that = getType().cast(o);
if (!Objects.equals(value, _that.getValue())) return false;
if (!Objects.equals(globalReference, _that.getGlobalReference())) return false;
if (!Objects.equals(externalReference, _that.getExternalReference())) return false;
if (!Objects.equals(reference, _that.getReference())) return false;
return true;
}
@Override
public int hashCode() {
int _result = 0;
_result = 31 * _result + (value != null ? value.hashCode() : 0);
_result = 31 * _result + (globalReference != null ? globalReference.hashCode() : 0);
_result = 31 * _result + (externalReference != null ? externalReference.hashCode() : 0);
_result = 31 * _result + (reference != null ? reference.hashCode() : 0);
return _result;
}
@Override
public String toString() {
return "ReferenceWithMetaIntegerBuilder {" +
"value=" + this.value + ", " +
"globalReference=" + this.globalReference + ", " +
"externalReference=" + this.externalReference + ", " +
"reference=" + this.reference +
'}';
}
}
}
class ReferenceWithMetaIntegerMeta extends BasicRosettaMetaData{
}