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

com.regnosys.rosetta.translate.synonymmap.SynonymAbsentTest Maven / Gradle / Ivy

There is a newer version: 11.25.1
Show newest version
package com.regnosys.rosetta.translate.synonymmap;

import com.regnosys.rosetta.rosetta.RosettaMapPathValue;
import com.regnosys.rosetta.rosetta.RosettaMapTestAbsentExpression;

import java.util.Collections;
import java.util.List;

public class SynonymAbsentTest implements SynonymTest {

	private final SynonymValue path;

	public SynonymAbsentTest(RosettaMapTestAbsentExpression exp) {
		path = new SynonymValue(Element.toElementList(((RosettaMapPathValue)exp.getArgument()).getPath()), 1, false);
	}

    @Override
	public List getPaths() {
		return Collections.singletonList(path);
	}

	public SynonymValue getPath() {
		return path;
	}
	
	@Override
	public String toString() {
		return path.toPathString() + " exists";
	}

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + ((path == null) ? 0 : path.hashCode());
		return result;
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		SynonymAbsentTest other = (SynonymAbsentTest) obj;
		if (path == null) {
			if (other.path != null)
				return false;
		} else if (!path.equals(other.path))
			return false;
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy