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

com.my.json.compare.rules.ValueRule Maven / Gradle / Ivy

The newest version!
package com.my.json.compare.rules;
import com.my.json.compare.rules.interfaces.ComparisionRule;

public class ValueRule implements ComparisionRule {

	@Override
	public boolean compareData(Object superSet, Object subSet) {
		
		return new TypeRule().compareData(superSet, subSet)?superSet.equals(subSet):false;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy