com.github.uscexp.blockformatpropertyfile.criteriastrategy.GreaterEqualCriteriaStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BlockFormatPropertyFile Show documentation
Show all versions of BlockFormatPropertyFile Show documentation
Property file in java style block format.
/*
* Copyright (C) 2014 by haui - all rights reserved
*/
package com.github.uscexp.blockformatpropertyfile.criteriastrategy;
import com.github.uscexp.blockformatpropertyfile.PropertyCondition;
/**
* @author haui
*
*/
public class GreaterEqualCriteriaStrategy extends ComparableCriteriaStrategy {
public GreaterEqualCriteriaStrategy(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