All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.jptlegalagreement.model.metafields.FieldWithMetaTerminationCurrencyAmendment Maven / Gradle / Ivy
package com.rosetta.jptlegalagreement.model.metafields;
import com.rosetta.jptlegalagreement.model.TerminationCurrencyAmendment;
import com.rosetta.model.lib.GlobalKey;
import com.rosetta.model.lib.GlobalKey.GlobalKeyBuilder;
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.FieldWithMeta;
import com.rosetta.model.lib.meta.FieldWithMeta.FieldWithMetaBuilder;
import com.rosetta.model.lib.meta.RosettaMetaData;
import com.rosetta.model.lib.path.RosettaPath;
import com.rosetta.model.lib.process.BuilderMerger;
import com.rosetta.model.lib.process.BuilderProcessor;
import com.rosetta.model.lib.process.Processor;
import com.rosetta.model.metafields.MetaFields;
import java.util.Objects;
import static java.util.Optional.ofNullable;
/**
* @version 1
*/
@RosettaDataType(value="FieldWithMetaTerminationCurrencyAmendment", builder=FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilderImpl.class, version="0.0.0")
public interface FieldWithMetaTerminationCurrencyAmendment extends RosettaModelObject, FieldWithMeta, GlobalKey {
FieldWithMetaTerminationCurrencyAmendmentMeta metaData = new FieldWithMetaTerminationCurrencyAmendmentMeta();
/*********************** Getter Methods ***********************/
TerminationCurrencyAmendment getValue();
MetaFields getMeta();
/*********************** Build Methods ***********************/
FieldWithMetaTerminationCurrencyAmendment build();
FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder toBuilder();
static FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder builder() {
return new FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilderImpl();
}
/*********************** Utility Methods ***********************/
@Override
default RosettaMetaData extends FieldWithMetaTerminationCurrencyAmendment> metaData() {
return metaData;
}
@Override
default Class extends FieldWithMetaTerminationCurrencyAmendment> getType() {
return FieldWithMetaTerminationCurrencyAmendment.class;
}
@Override
default Class getValueType() {
return TerminationCurrencyAmendment.class;
}
@Override
default void process(RosettaPath path, Processor processor) {
processRosetta(path.newSubPath("value"), processor, TerminationCurrencyAmendment.class, getValue());
processRosetta(path.newSubPath("meta"), processor, MetaFields.class, getMeta());
}
/*********************** Builder Interface ***********************/
interface FieldWithMetaTerminationCurrencyAmendmentBuilder extends FieldWithMetaTerminationCurrencyAmendment, RosettaModelObjectBuilder, GlobalKey.GlobalKeyBuilder, FieldWithMeta.FieldWithMetaBuilder {
TerminationCurrencyAmendment.TerminationCurrencyAmendmentBuilder getOrCreateValue();
TerminationCurrencyAmendment.TerminationCurrencyAmendmentBuilder getValue();
MetaFields.MetaFieldsBuilder getOrCreateMeta();
MetaFields.MetaFieldsBuilder getMeta();
FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder setValue(TerminationCurrencyAmendment value);
FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder setMeta(MetaFields meta);
@Override
default void process(RosettaPath path, BuilderProcessor processor) {
processRosetta(path.newSubPath("value"), processor, TerminationCurrencyAmendment.TerminationCurrencyAmendmentBuilder.class, getValue());
processRosetta(path.newSubPath("meta"), processor, MetaFields.MetaFieldsBuilder.class, getMeta());
}
FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder prune();
}
/*********************** Immutable Implementation of FieldWithMetaTerminationCurrencyAmendment ***********************/
class FieldWithMetaTerminationCurrencyAmendmentImpl implements FieldWithMetaTerminationCurrencyAmendment {
private final TerminationCurrencyAmendment value;
private final MetaFields meta;
protected FieldWithMetaTerminationCurrencyAmendmentImpl(FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder builder) {
this.value = ofNullable(builder.getValue()).map(f->f.build()).orElse(null);
this.meta = ofNullable(builder.getMeta()).map(f->f.build()).orElse(null);
}
@Override
@RosettaAttribute("value")
public TerminationCurrencyAmendment getValue() {
return value;
}
@Override
@RosettaAttribute("meta")
public MetaFields getMeta() {
return meta;
}
@Override
public FieldWithMetaTerminationCurrencyAmendment build() {
return this;
}
@Override
public FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder toBuilder() {
FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder builder = builder();
setBuilderFields(builder);
return builder;
}
protected void setBuilderFields(FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder builder) {
ofNullable(getValue()).ifPresent(builder::setValue);
ofNullable(getMeta()).ifPresent(builder::setMeta);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || !(o instanceof RosettaModelObject) || !getType().equals(((RosettaModelObject)o).getType())) return false;
FieldWithMetaTerminationCurrencyAmendment _that = getType().cast(o);
if (!Objects.equals(value, _that.getValue())) return false;
if (!Objects.equals(meta, _that.getMeta())) return false;
return true;
}
@Override
public int hashCode() {
int _result = 0;
_result = 31 * _result + (value != null ? value.hashCode() : 0);
_result = 31 * _result + (meta != null ? meta.hashCode() : 0);
return _result;
}
@Override
public String toString() {
return "FieldWithMetaTerminationCurrencyAmendment {" +
"value=" + this.value + ", " +
"meta=" + this.meta +
'}';
}
}
/*********************** Builder Implementation of FieldWithMetaTerminationCurrencyAmendment ***********************/
class FieldWithMetaTerminationCurrencyAmendmentBuilderImpl implements FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder {
protected TerminationCurrencyAmendment.TerminationCurrencyAmendmentBuilder value;
protected MetaFields.MetaFieldsBuilder meta;
public FieldWithMetaTerminationCurrencyAmendmentBuilderImpl() {
}
@Override
@RosettaAttribute("value")
public TerminationCurrencyAmendment.TerminationCurrencyAmendmentBuilder getValue() {
return value;
}
@Override
public TerminationCurrencyAmendment.TerminationCurrencyAmendmentBuilder getOrCreateValue() {
TerminationCurrencyAmendment.TerminationCurrencyAmendmentBuilder result;
if (value!=null) {
result = value;
}
else {
result = value = TerminationCurrencyAmendment.builder();
}
return result;
}
@Override
@RosettaAttribute("meta")
public MetaFields.MetaFieldsBuilder getMeta() {
return meta;
}
@Override
public MetaFields.MetaFieldsBuilder getOrCreateMeta() {
MetaFields.MetaFieldsBuilder result;
if (meta!=null) {
result = meta;
}
else {
result = meta = MetaFields.builder();
}
return result;
}
@Override
@RosettaAttribute("value")
public FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder setValue(TerminationCurrencyAmendment value) {
this.value = value==null?null:value.toBuilder();
return this;
}
@Override
@RosettaAttribute("meta")
public FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder setMeta(MetaFields meta) {
this.meta = meta==null?null:meta.toBuilder();
return this;
}
@Override
public FieldWithMetaTerminationCurrencyAmendment build() {
return new FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentImpl(this);
}
@Override
public FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder toBuilder() {
return this;
}
@SuppressWarnings("unchecked")
@Override
public FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder prune() {
if (value!=null && !value.prune().hasData()) value = null;
if (meta!=null && !meta.prune().hasData()) meta = null;
return this;
}
@Override
public boolean hasData() {
if (getValue()!=null && getValue().hasData()) return true;
return false;
}
@SuppressWarnings("unchecked")
@Override
public FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder merge(RosettaModelObjectBuilder other, BuilderMerger merger) {
FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder o = (FieldWithMetaTerminationCurrencyAmendment.FieldWithMetaTerminationCurrencyAmendmentBuilder) other;
merger.mergeRosetta(getValue(), o.getValue(), this::setValue);
merger.mergeRosetta(getMeta(), o.getMeta(), this::setMeta);
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;
FieldWithMetaTerminationCurrencyAmendment _that = getType().cast(o);
if (!Objects.equals(value, _that.getValue())) return false;
if (!Objects.equals(meta, _that.getMeta())) return false;
return true;
}
@Override
public int hashCode() {
int _result = 0;
_result = 31 * _result + (value != null ? value.hashCode() : 0);
_result = 31 * _result + (meta != null ? meta.hashCode() : 0);
return _result;
}
@Override
public String toString() {
return "FieldWithMetaTerminationCurrencyAmendmentBuilder {" +
"value=" + this.value + ", " +
"meta=" + this.meta +
'}';
}
}
}
class FieldWithMetaTerminationCurrencyAmendmentMeta extends BasicRosettaMetaData{
}