io.github.bonigarcia.seljup.VersionComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-jupiter Show documentation
Show all versions of selenium-jupiter Show documentation
JUnit 5 extension for Selenium WebDriver
The newest version!
/*
* (C) Copyright 2018 Boni Garcia (https://bonigarcia.github.io/)
*
* 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.github.bonigarcia.seljup;
import static java.lang.Integer.parseInt;
import static java.lang.Math.max;
import java.util.Comparator;
/**
* Version comparator.
*
* @author Boni Garcia
* @since 2.1.0
*/
public class VersionComparator implements Comparator {
@Override
public int compare(String v1, String v2) {
String[] v1split = v1.split("\\.");
String[] v2split = v2.split("\\.");
int length = max(v1split.length, v2split.length);
for (int i = 0; i < length; i++) {
int v1Part = i < v1split.length ? parseInt(v1split[i]) : 0;
int v2Part = i < v2split.length ? parseInt(v2split[i]) : 0;
if (v1Part < v2Part) {
return -1;
}
if (v1Part > v2Part) {
return 1;
}
}
return 0;
}
}