2016-01-02 00:35:54 +01:00
|
|
|
#include "JavaInstall.h"
|
2022-11-03 16:41:55 -03:00
|
|
|
|
|
|
|
#include "StringUtils.h"
|
2016-01-02 00:35:54 +01:00
|
|
|
|
|
|
|
bool JavaInstall::operator<(const JavaInstall &rhs)
|
|
|
|
{
|
2022-11-03 16:41:55 -03:00
|
|
|
auto archCompare = StringUtils::naturalCompare(arch, rhs.arch, Qt::CaseInsensitive);
|
2018-07-15 14:51:05 +02:00
|
|
|
if(archCompare != 0)
|
|
|
|
return archCompare < 0;
|
|
|
|
if(id < rhs.id)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if(id > rhs.id)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2022-11-03 16:41:55 -03:00
|
|
|
return StringUtils::naturalCompare(path, rhs.path, Qt::CaseInsensitive) < 0;
|
2016-01-02 00:35:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool JavaInstall::operator==(const JavaInstall &rhs)
|
|
|
|
{
|
2018-07-15 14:51:05 +02:00
|
|
|
return arch == rhs.arch && id == rhs.id && path == rhs.path;
|
2016-01-02 00:35:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool JavaInstall::operator>(const JavaInstall &rhs)
|
|
|
|
{
|
2018-07-15 14:51:05 +02:00
|
|
|
return (!operator<(rhs)) && (!operator==(rhs));
|
2016-01-02 00:35:54 +01:00
|
|
|
}
|