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

com.groupbyinc.common.jackson.jq.internal.operators.LessOperator Maven / Gradle / Ivy

There is a newer version: 198
Show newest version
package net.thisptr.jackson.jq.internal.operators;

public class LessOperator extends ComparisonOperator {
	public LessOperator() {
		super("<");
	}

	@Override
	protected boolean test(int r) {
		return r < 0;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy