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

com.github.uscexp.blockformatpropertyfile.criteriastrategy.SmallerEqualCriteriaStrategy Maven / Gradle / Ivy

There is a newer version: 0.2.0-Beta
Show newest version
/*
 * Copyright (C) 2014 by haui - all rights reserved
 */
package com.github.uscexp.blockformatpropertyfile.criteriastrategy;

import com.github.uscexp.blockformatpropertyfile.PropertyCondition;

/**
 * @author haui
 *
 */
public class SmallerEqualCriteriaStrategy extends ComparableCriteriaStrategy {

	public SmallerEqualCriteriaStrategy(PropertyCondition propertyCondition) {
		super(propertyCondition);
	}

	@SuppressWarnings({ "unchecked", "rawtypes" })
	@Override
	public boolean evaluate(Object value, Object object) {
		validate(object);
		return ((Comparable) value).compareTo(object) >= 0;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy