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

org.openforis.collect.datacleansing.DataCleansingStep Maven / Gradle / Ivy

There is a newer version: 4.0.97
Show newest version
package org.openforis.collect.datacleansing;

import java.util.ArrayList;
import java.util.List;
import java.util.UUID;

import org.openforis.collect.model.CollectSurvey;

/**
 * 
 * @author S. Ricci
 *
 */
public class DataCleansingStep extends DataCleansingItem {
	
	private static final long serialVersionUID = 1L;

	public enum DataCleansingStepType {
		ATTRIBUTE_UPDATE('a'),
		ENTITY_DELETE('e'),
		RECORD_DELETE('r');
		
		private char code;

		DataCleansingStepType(char code) {
			this.code = code;
		}
		
		public char getCode() {
			return code;
		}

		public static DataCleansingStepType fromCode(char typeCode) {
			for (DataCleansingStepType type : values()) {
				if (type.code == typeCode) {
					return type;
				}
			}
			throw new IllegalArgumentException("Invlaid DataCleansingStepType code: " + typeCode);
		}
	}
	
	private String title;
	private String description;
	private Integer queryId;
	private DataCleansingStepType type = DataCleansingStepType.ATTRIBUTE_UPDATE;
	private List updateValues = new ArrayList();
	
	private transient DataQuery query;
	
	public DataCleansingStep(CollectSurvey survey) {
		super(survey);
	}
	
	public DataCleansingStep(CollectSurvey survey, UUID uuid) {
		super(survey, uuid);
	}
	
	public void addUpdateValue(DataCleansingStepValue updateValue) {
		if (this.updateValues == null) {
			this.updateValues = new ArrayList();
		}
		this.updateValues.add(updateValue);
	}

	public Integer getQueryId() {
		return query == null ? queryId : query.getId();
	}
	
	public void setQuery(DataQuery query) {
		this.query = query;
		this.queryId = query == null ? null: query.getId();
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public String getDescription() {
		return description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public void setQueryId(Integer queryId) {
		this.queryId = queryId;
		this.query = null;
	}
	
	public DataCleansingStepType getType() {
		return type;
	}
	
	public void setType(DataCleansingStepType type) {
		this.type = type;
	}
	
	public DataQuery getQuery() {
		return query;
	}
	
	public List getUpdateValues() {
		return updateValues;
	}
	
	public void setUpdateValues(List values) {
		this.updateValues = values;
	}
	
	@Override
	public String toString() {
		StringBuilder sb = new StringBuilder();
		if (getId() != null) {
			sb.append('[');
			sb.append(getId());
			sb.append(']');
		}
		if (title != null) {
			sb.append(title);
		}
		return sb.toString();
	}

	@Override
	public boolean deepEquals(Object obj, boolean ignoreId) {
		if (this == obj)
			return true;
		if (!super.deepEquals(obj, ignoreId))
			return false;
		if (getClass() != obj.getClass())
			return false;
		DataCleansingStep other = (DataCleansingStep) obj;
		if (description == null) {
			if (other.description != null)
				return false;
		} else if (!description.equals(other.description))
			return false;
		if (query == null) {
			if (other.query != null)
				return false;
		} else if (!query.deepEquals(other.query, ignoreId))
			return false;
		if (! ignoreId) {
			if (queryId == null) {
				if (other.queryId != null)
					return false;
			} else if (!queryId.equals(other.queryId))
				return false;
		}
		if (title == null) {
			if (other.title != null)
				return false;
		} else if (!title.equals(other.title))
			return false;
		return true;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy