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

net.avcompris.commons.query.Comparison Maven / Gradle / Ivy

There is a newer version: 0.6.3
Show newest version
package net.avcompris.commons.query;

import javax.annotation.Nullable;

/**
 * Interface for "EQ", "NEQ", "LT", etc.-typed
 * Filterings.
 */
public interface Comparison extends Filtering {

	U getField();

	@Nullable
	Object getArg();
}