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

ars.file.query.condition.LargeEqual Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
package ars.file.query.condition;

import ars.file.Describe.Property;
import ars.file.query.condition.Condition;

/**
 * 大于或等于
 * 
 * @author yongqiangwu
 *
 */
public class LargeEqual implements Condition {
	private Property property; // 比较属性
	private Object value; // 比较值

	public LargeEqual(Property property, Object value) {
		this.property = property;
		this.value = value;
	}

	public Property getProperty() {
		return property;
	}

	public Object getValue() {
		return value;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy