All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.isda.cdm.metafields.FieldWithMetaAnotherMiddle Maven / Gradle / Ivy

There is a newer version: 11.25.1
Show newest version
package org.isda.cdm.metafields;

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 org.isda.cdm.AnotherMiddle;

import static java.util.Optional.ofNullable;

/**
 * @version 1
 */
@RosettaDataType(value="FieldWithMetaAnotherMiddle", builder=FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilderImpl.class, version="0.0.0")
public interface FieldWithMetaAnotherMiddle extends RosettaModelObject, FieldWithMeta, GlobalKey {

	FieldWithMetaAnotherMiddleMeta metaData = new FieldWithMetaAnotherMiddleMeta();

	/*********************** Getter Methods  ***********************/
	AnotherMiddle getValue();
	MetaFields getMeta();

	/*********************** Build Methods  ***********************/
	FieldWithMetaAnotherMiddle build();
	
	FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder toBuilder();
	
	static FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder builder() {
		return new FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilderImpl();
	}

	/*********************** Utility Methods  ***********************/
	@Override
	default RosettaMetaData metaData() {
		return metaData;
	}
	
	@Override
	default Class getType() {
		return FieldWithMetaAnotherMiddle.class;
	}
	
	@Override
	default Class getValueType() {
		return AnotherMiddle.class;
	}
	
	@Override
	default void process(RosettaPath path, Processor processor) {
		processRosetta(path.newSubPath("value"), processor, AnotherMiddle.class, getValue());
		processRosetta(path.newSubPath("meta"), processor, MetaFields.class, getMeta());
	}
	

	/*********************** Builder Interface  ***********************/
	interface FieldWithMetaAnotherMiddleBuilder extends FieldWithMetaAnotherMiddle, RosettaModelObjectBuilder, GlobalKey.GlobalKeyBuilder, FieldWithMeta.FieldWithMetaBuilder {
		AnotherMiddle.AnotherMiddleBuilder getOrCreateValue();
		AnotherMiddle.AnotherMiddleBuilder getValue();
		MetaFields.MetaFieldsBuilder getOrCreateMeta();
		MetaFields.MetaFieldsBuilder getMeta();
		FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder setValue(AnotherMiddle value);
		FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder setMeta(MetaFields meta);

		@Override
		default void process(RosettaPath path, BuilderProcessor processor) {
			processRosetta(path.newSubPath("value"), processor, AnotherMiddle.AnotherMiddleBuilder.class, getValue());
			processRosetta(path.newSubPath("meta"), processor, MetaFields.MetaFieldsBuilder.class, getMeta());
		}
		

		FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder prune();
	}

	/*********************** Immutable Implementation of FieldWithMetaAnotherMiddle  ***********************/
	class FieldWithMetaAnotherMiddleImpl implements FieldWithMetaAnotherMiddle {
		private final AnotherMiddle value;
		private final MetaFields meta;
		
		protected FieldWithMetaAnotherMiddleImpl(FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder 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 AnotherMiddle getValue() {
			return value;
		}
		
		@Override
		@RosettaAttribute("meta")
		public MetaFields getMeta() {
			return meta;
		}
		
		@Override
		public FieldWithMetaAnotherMiddle build() {
			return this;
		}
		
		@Override
		public FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder toBuilder() {
			FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder builder = builder();
			setBuilderFields(builder);
			return builder;
		}
		
		protected void setBuilderFields(FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder 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;
		
			FieldWithMetaAnotherMiddle _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 "FieldWithMetaAnotherMiddle {" +
				"value=" + this.value + ", " +
				"meta=" + this.meta +
			'}';
		}
	}

	/*********************** Builder Implementation of FieldWithMetaAnotherMiddle  ***********************/
	class FieldWithMetaAnotherMiddleBuilderImpl implements FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder {
	
		protected AnotherMiddle.AnotherMiddleBuilder value;
		protected MetaFields.MetaFieldsBuilder meta;
	
		public FieldWithMetaAnotherMiddleBuilderImpl() {
		}
	
		@Override
		@RosettaAttribute("value")
		public AnotherMiddle.AnotherMiddleBuilder getValue() {
			return value;
		}
		
		@Override
		public AnotherMiddle.AnotherMiddleBuilder getOrCreateValue() {
			AnotherMiddle.AnotherMiddleBuilder result;
			if (value!=null) {
				result = value;
			}
			else {
				result = value = AnotherMiddle.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 FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder setValue(AnotherMiddle value) {
			this.value = value==null?null:value.toBuilder();
			return this;
		}
		@Override
		@RosettaAttribute("meta")
		public FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder setMeta(MetaFields meta) {
			this.meta = meta==null?null:meta.toBuilder();
			return this;
		}
		
		@Override
		public FieldWithMetaAnotherMiddle build() {
			return new FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleImpl(this);
		}
		
		@Override
		public FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder toBuilder() {
			return this;
		}
	
		@SuppressWarnings("unchecked")
		@Override
		public FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder 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 FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder merge(RosettaModelObjectBuilder other, BuilderMerger merger) {
			FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder o = (FieldWithMetaAnotherMiddle.FieldWithMetaAnotherMiddleBuilder) 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;
		
			FieldWithMetaAnotherMiddle _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 "FieldWithMetaAnotherMiddleBuilder {" +
				"value=" + this.value + ", " +
				"meta=" + this.meta +
			'}';
		}
	}
}

class FieldWithMetaAnotherMiddleMeta extends BasicRosettaMetaData{

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy