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

hu.icellmobilsoft.coffee.tool.utils.annotation.RangeUtil Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
/*-
 * #%L
 * Coffee
 * %%
 * Copyright (C) 2020 i-Cell Mobilsoft Zrt.
 * %%
 * 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.
 * #L%
 */
package hu.icellmobilsoft.coffee.tool.utils.annotation;

import org.apache.commons.lang3.StringUtils;

import hu.icellmobilsoft.coffee.cdi.annotation.Range;
import hu.icellmobilsoft.coffee.tool.version.ComparableVersion;

/**
 * A collection of tools that facilitate handling values used in the @Range annotation according to ComparableVersion.class
 *
 * @author imre.scheffer
 * @since 1.0.0
 */
public class RangeUtil {

    /**
     * Default constructor, constructs a new object.
     */
    public RangeUtil() {
        super();
    }

    /**
     * Searching for values in the Range annotation
     *
     * @param range
     *            Range annotation
     * @param value
     *            Checks if the searched value is included in the Range annotation.
     * @return true if the Range annotation contains the searched value
     */
    public static boolean inRange(Range range, String value) {
        if (range == null || StringUtils.isBlank(value)) {
            return false;
        }

        ComparableVersion current = new ComparableVersion(value);

        boolean geFrom;
        if (StringUtils.isNotBlank(range.from())) {
            ComparableVersion from = new ComparableVersion(range.from());
            geFrom = current.compareTo(from) >= 0;
        } else {
            geFrom = true;
        }
        // if you are older than "from", look no further
        if (!geFrom) {
            return false;
        }

        boolean leTo;
        if (StringUtils.isNotBlank(range.to())) {
            ComparableVersion to = new ComparableVersion(range.to());
            leTo = current.compareTo(to) <= 0;
        } else {
            leTo = true;
        }
        return geFrom && leTo;
    }

    /**
     * Searching for a value in an array within the Range annotation
     *
     * @param ranges
     *            Array within the Range annotation
     * @param value
     *            Checks if the searched value is included in the Range annotations
     * @return true if the array of Range annotations contains the searched value
     */
    public static boolean inRanges(Range[] ranges, String value) {
        if (ranges == null || StringUtils.isBlank(value)) {
            return false;
        }
        for (Range range : ranges) {
            boolean inRange = inRange(range, value);
            if (inRange) {
                return true;
            }
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy