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

io.qameta.allure.maven.VersionUtils Maven / Gradle / Ivy

The newest version!
/*
 *  Copyright 2016-2024 Qameta Software Inc
 *
 *  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.
 */
package io.qameta.allure.maven;

/**
 * @author eroshenkoam (Artem Eroshenko).
 */
public final class VersionUtils {

    private static final String BY_DOT = "\\.";

    private VersionUtils() {
        throw new IllegalStateException("do not instance");
    }

    public static Integer versionCompare(final String first, final String second) {
        final String[] firstVersions = first.split(BY_DOT);
        final String[] secondVersions = second.split(BY_DOT);
        int i = 0;
        while (i < firstVersions.length && i < secondVersions.length
                && firstVersions[i].equals(secondVersions[i])) {
            i++;
        }
        if (i < firstVersions.length && i < secondVersions.length) {
            final int diff =
                    Integer.valueOf(firstVersions[i]).compareTo(Integer.valueOf(secondVersions[i]));
            return Integer.signum(diff);
        } else {
            return Integer.signum(firstVersions.length - secondVersions.length);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy