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

org.drools.verifier.report.components.Gap Maven / Gradle / Ivy

There is a newer version: 9.44.0.Final
Show newest version
package org.drools.verifier.report.components;

import org.drools.base.evaluators.Operator;
import org.drools.verifier.components.Field;
import org.drools.verifier.components.LiteralRestriction;

/**
 * 
 * @author Toni Rikkola
 */
public class Gap extends MissingRange implements RangeCheckCause,
		Comparable {

	private final LiteralRestriction restriction;

	public int compareTo(MissingRange another) {
		return super.compareTo(another);
	}

	public CauseType getCauseType() {
		return CauseType.GAP;
	}

	/**
	 * 
	 * @param field
	 *            Field from where the value is missing.
	 * @param evaluator
	 *            Evaluator for the missing value.
	 * @param cause
	 *            The restriction that the gap begins from.
	 */
	public Gap(Field field, Operator operator, LiteralRestriction restriction) {
		super(field, operator);

		this.restriction = restriction;
	}

	public String getRuleName() {
		return restriction.getRuleName();
	}

	public LiteralRestriction getRestriction() {
		return restriction;
	}

	public String getValueAsString() {
		return restriction.getValueAsString();
	}

	public Object getValueAsObject() {
		return restriction.getValueAsObject();
	}

	@Override
	public String toString() {
		return "Gap: (" + field + ") " + getOperator() + " "
				+ getValueAsString() + " from rule: [" + getRuleName() + "]";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy