/* * Copyright 2000-2014 Vaadin Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. * * Contributor: * Florian Pirchner - Copied filter and fixed them for lunifera usecase. */ package org.lunifera.dsl.dto.lib.services.filters; public class LBetween implements ILFilter { private final Object propertyId; private final Comparable<?> startValue; private final Comparable<?> endValue; public LBetween(Object propertyId, Comparable<?> startValue, Comparable<?> endValue) { this.propertyId = propertyId; this.startValue = startValue; this.endValue = endValue; } public Object getPropertyId() { return propertyId; } public Comparable<?> getStartValue() { return startValue; } public Comparable<?> getEndValue() { return endValue; } @Override public boolean appliesToProperty(Object propertyId) { return getPropertyId() != null && getPropertyId().equals(propertyId); } @Override public int hashCode() { return getPropertyId().hashCode() + getStartValue().hashCode() + getEndValue().hashCode(); } @Override public boolean equals(Object obj) { if (obj == null) { return false; } // Only objects of the same class can be equal if (!getClass().equals(obj.getClass())) { return false; } final LBetween o = (LBetween) obj; // Checks the properties one by one boolean propertyIdEqual = (null != getPropertyId()) ? getPropertyId() .equals(o.getPropertyId()) : null == o.getPropertyId(); boolean startValueEqual = (null != getStartValue()) ? getStartValue() .equals(o.getStartValue()) : null == o.getStartValue(); boolean endValueEqual = (null != getEndValue()) ? getEndValue().equals( o.getEndValue()) : null == o.getEndValue(); return propertyIdEqual && startValueEqual && endValueEqual; } }