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

com.rosetta.jptlegalagreement.model.metafields.FieldWithMetaThreshold Maven / Gradle / Ivy

There is a newer version: 11.25.1
Show newest version
package com.rosetta.jptlegalagreement.model.metafields;

import com.rosetta.jptlegalagreement.model.Threshold;
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="FieldWithMetaThreshold", builder=FieldWithMetaThreshold.FieldWithMetaThresholdBuilderImpl.class, version="0.0.0")
public interface FieldWithMetaThreshold extends RosettaModelObject, FieldWithMeta, GlobalKey {

	FieldWithMetaThresholdMeta metaData = new FieldWithMetaThresholdMeta();

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

	/*********************** Build Methods  ***********************/
	FieldWithMetaThreshold build();
	
	FieldWithMetaThreshold.FieldWithMetaThresholdBuilder toBuilder();
	
	static FieldWithMetaThreshold.FieldWithMetaThresholdBuilder builder() {
		return new FieldWithMetaThreshold.FieldWithMetaThresholdBuilderImpl();
	}

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

	/*********************** Builder Interface  ***********************/
	interface FieldWithMetaThresholdBuilder extends FieldWithMetaThreshold, RosettaModelObjectBuilder, GlobalKey.GlobalKeyBuilder, FieldWithMeta.FieldWithMetaBuilder {
		Threshold.ThresholdBuilder getOrCreateValue();
		Threshold.ThresholdBuilder getValue();
		MetaFields.MetaFieldsBuilder getOrCreateMeta();
		MetaFields.MetaFieldsBuilder getMeta();
		FieldWithMetaThreshold.FieldWithMetaThresholdBuilder setValue(Threshold value);
		FieldWithMetaThreshold.FieldWithMetaThresholdBuilder setMeta(MetaFields meta);

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

		FieldWithMetaThreshold.FieldWithMetaThresholdBuilder prune();
	}

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

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

class FieldWithMetaThresholdMeta extends BasicRosettaMetaData{

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy