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