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

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

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

public class GreaterEqualOperator extends ComparisonOperator {
	public GreaterEqualOperator() {
		super(">=");
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy