aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/store-query/src/main/java/tools/refinery/store/query/term/comparable/LessTerm.java
blob: 44e7090284d76df07c6dee5bfbd5caa3782f176b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package tools.refinery.store.query.term.comparable;

import tools.refinery.store.query.substitution.Substitution;
import tools.refinery.store.query.term.Term;

public class LessTerm<T extends Comparable<T>> extends ComparisonTerm<T> {
	public LessTerm(Class<T> argumentType, Term<T> left, Term<T> right) {
		super(argumentType, left, right);
	}

	@Override
	protected Boolean doEvaluate(T leftValue, T rightValue) {
		return leftValue.compareTo(rightValue) < 0;
	}

	@Override
	public Term<Boolean> doSubstitute(Substitution substitution, Term<T> substitutedLeft, Term<T> substitutedRight) {
		return new LessTerm<>(getArgumentType(), substitutedLeft, substitutedRight);
	}

	@Override
	public String toString() {
		return "(%s < %s)".formatted(getLeft(), getRight());
	}
}