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.FieldWithMetaPostingObligationsElection Maven / Gradle / Ivy
package com.rosetta.jptlegalagreement.model.metafields;
import com.rosetta.jptlegalagreement.model.PostingObligationsElection;
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="FieldWithMetaPostingObligationsElection", builder=FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilderImpl.class, version="0.0.0")
public interface FieldWithMetaPostingObligationsElection extends RosettaModelObject, FieldWithMeta, GlobalKey {
FieldWithMetaPostingObligationsElectionMeta metaData = new FieldWithMetaPostingObligationsElectionMeta();
/*********************** Getter Methods ***********************/
PostingObligationsElection getValue();
MetaFields getMeta();
/*********************** Build Methods ***********************/
FieldWithMetaPostingObligationsElection build();
FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder toBuilder();
static FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder builder() {
return new FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilderImpl();
}
/*********************** Utility Methods ***********************/
@Override
default RosettaMetaData extends FieldWithMetaPostingObligationsElection> metaData() {
return metaData;
}
@Override
default Class extends FieldWithMetaPostingObligationsElection> getType() {
return FieldWithMetaPostingObligationsElection.class;
}
@Override
default Class getValueType() {
return PostingObligationsElection.class;
}
@Override
default void process(RosettaPath path, Processor processor) {
processRosetta(path.newSubPath("value"), processor, PostingObligationsElection.class, getValue());
processRosetta(path.newSubPath("meta"), processor, MetaFields.class, getMeta());
}
/*********************** Builder Interface ***********************/
interface FieldWithMetaPostingObligationsElectionBuilder extends FieldWithMetaPostingObligationsElection, RosettaModelObjectBuilder, GlobalKey.GlobalKeyBuilder, FieldWithMeta.FieldWithMetaBuilder {
PostingObligationsElection.PostingObligationsElectionBuilder getOrCreateValue();
PostingObligationsElection.PostingObligationsElectionBuilder getValue();
MetaFields.MetaFieldsBuilder getOrCreateMeta();
MetaFields.MetaFieldsBuilder getMeta();
FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder setValue(PostingObligationsElection value);
FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder setMeta(MetaFields meta);
@Override
default void process(RosettaPath path, BuilderProcessor processor) {
processRosetta(path.newSubPath("value"), processor, PostingObligationsElection.PostingObligationsElectionBuilder.class, getValue());
processRosetta(path.newSubPath("meta"), processor, MetaFields.MetaFieldsBuilder.class, getMeta());
}
FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder prune();
}
/*********************** Immutable Implementation of FieldWithMetaPostingObligationsElection ***********************/
class FieldWithMetaPostingObligationsElectionImpl implements FieldWithMetaPostingObligationsElection {
private final PostingObligationsElection value;
private final MetaFields meta;
protected FieldWithMetaPostingObligationsElectionImpl(FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder 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 PostingObligationsElection getValue() {
return value;
}
@Override
@RosettaAttribute("meta")
public MetaFields getMeta() {
return meta;
}
@Override
public FieldWithMetaPostingObligationsElection build() {
return this;
}
@Override
public FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder toBuilder() {
FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder builder = builder();
setBuilderFields(builder);
return builder;
}
protected void setBuilderFields(FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder 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;
FieldWithMetaPostingObligationsElection _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 "FieldWithMetaPostingObligationsElection {" +
"value=" + this.value + ", " +
"meta=" + this.meta +
'}';
}
}
/*********************** Builder Implementation of FieldWithMetaPostingObligationsElection ***********************/
class FieldWithMetaPostingObligationsElectionBuilderImpl implements FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder {
protected PostingObligationsElection.PostingObligationsElectionBuilder value;
protected MetaFields.MetaFieldsBuilder meta;
public FieldWithMetaPostingObligationsElectionBuilderImpl() {
}
@Override
@RosettaAttribute("value")
public PostingObligationsElection.PostingObligationsElectionBuilder getValue() {
return value;
}
@Override
public PostingObligationsElection.PostingObligationsElectionBuilder getOrCreateValue() {
PostingObligationsElection.PostingObligationsElectionBuilder result;
if (value!=null) {
result = value;
}
else {
result = value = PostingObligationsElection.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 FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder setValue(PostingObligationsElection value) {
this.value = value==null?null:value.toBuilder();
return this;
}
@Override
@RosettaAttribute("meta")
public FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder setMeta(MetaFields meta) {
this.meta = meta==null?null:meta.toBuilder();
return this;
}
@Override
public FieldWithMetaPostingObligationsElection build() {
return new FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionImpl(this);
}
@Override
public FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder toBuilder() {
return this;
}
@SuppressWarnings("unchecked")
@Override
public FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder 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 FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder merge(RosettaModelObjectBuilder other, BuilderMerger merger) {
FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder o = (FieldWithMetaPostingObligationsElection.FieldWithMetaPostingObligationsElectionBuilder) 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;
FieldWithMetaPostingObligationsElection _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 "FieldWithMetaPostingObligationsElectionBuilder {" +
"value=" + this.value + ", " +
"meta=" + this.meta +
'}';
}
}
}
class FieldWithMetaPostingObligationsElectionMeta extends BasicRosettaMetaData{
}