]> git.mxchange.org Git - jcontacts-business-core.git/commitdiff
Changed:
authorRoland Häder <roland@mxchange.org>
Wed, 19 Oct 2022 11:48:35 +0000 (13:48 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 19 Oct 2022 11:48:35 +0000 (13:48 +0200)
- updated reference from Comparables to ComparableUtils

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jcontactsbusiness/model/basicdata/BusinessBasicData.java
src/org/mxchange/jcontactsbusiness/model/branchoffice/BusinessBranchOffice.java
src/org/mxchange/jcontactsbusiness/model/department/BusinessDepartment.java
src/org/mxchange/jcontactsbusiness/model/employee/BusinessEmployee.java
src/org/mxchange/jcontactsbusiness/model/headquarter/BusinessHeadquarter.java
src/org/mxchange/jcontactsbusiness/model/jobposition/EmployeePosition.java
src/org/mxchange/jcontactsbusiness/model/logo/BusinessLogo.java
src/org/mxchange/jcontactsbusiness/model/opening_time/BusinessOpeningTime.java

index e1b2841d65e4ca1e1057fcae12e4f81fb3093b6c..38308b7a482d23361ae3052fdc7e4834bd5bd86d 100644 (file)
@@ -44,7 +44,7 @@ import org.mxchange.jcontactsbusiness.model.headquarter.Headquarter;
 import org.mxchange.jcontactsbusiness.model.logo.BusinessLogo;
 import org.mxchange.jcontactsbusiness.model.logo.Logo;
 import org.mxchange.jcontactsbusiness.model.utils.HeadquarterUtils;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jphone.model.phonenumbers.fax.DialableFaxNumber;
 import org.mxchange.jphone.model.phonenumbers.fax.FaxNumber;
 import org.mxchange.jphone.model.phonenumbers.landline.DialableLandLineNumber;
@@ -245,7 +245,7 @@ public class BusinessBasicData implements BasicData {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index f24a8bf0c935f8ded20ba7b5d985dc56f67150c4..471983641832eb7f555ed6d9cee7be3ce32787bd 100644 (file)
@@ -46,7 +46,7 @@ import org.mxchange.jcontactsbusiness.model.basicdata.BasicData;
 import org.mxchange.jcontactsbusiness.model.basicdata.BusinessBasicData;
 import org.mxchange.jcontactsbusiness.model.opening_time.BusinessOpeningTime;
 import org.mxchange.jcontactsbusiness.model.opening_time.OpeningTime;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jcoreutils.number.SafeNumberUtils;
 import org.mxchange.jcountry.model.data.Country;
 import org.mxchange.jcountry.model.data.CountryData;
@@ -357,7 +357,7 @@ UserUtils.compare(this.getBranchUserOwner(), branchOffice.getBranchUserOwner())
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index 88d606ec12c077ca02adff5b9ec6ca99fb7e7d08..406a6d246b41fc7c526ce82517800d823bf76a23 100644 (file)
@@ -47,7 +47,7 @@ import org.mxchange.jcontactsbusiness.model.headquarter.Headquarter;
 import org.mxchange.jcontactsbusiness.model.utils.BasicDataUtils;
 import org.mxchange.jcontactsbusiness.model.utils.BranchOfficeUtils;
 import org.mxchange.jcontactsbusiness.model.utils.HeadquarterUtils;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jusercore.model.user.LoginUser;
 import org.mxchange.jusercore.model.user.User;
 import org.mxchange.jusercore.model.utils.UserUtils;
@@ -200,7 +200,7 @@ UserUtils.compare(this.getDepartmentUserOwner(), department.getDepartmentUserOwn
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index 110dcd2b88378cd27f4070b86b98c47b0ac15d28..8e199440ba73b63573a84cfedfabd56dc49d6e9c 100644 (file)
@@ -52,7 +52,7 @@ import org.mxchange.jcontactsbusiness.model.utils.BasicDataUtils;
 import org.mxchange.jcontactsbusiness.model.utils.BranchOfficeUtils;
 import org.mxchange.jcontactsbusiness.model.utils.DepartmentUtils;
 import org.mxchange.jcontactsbusiness.model.utils.HeadquarterUtils;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jphone.model.phonenumbers.mobile.DialableMobileNumber;
 import org.mxchange.jphone.model.phonenumbers.mobile.MobileNumber;
 import org.mxchange.jusercore.model.user.LoginUser;
@@ -240,7 +240,7 @@ JobPositionUtils.compare(this.getEmployeeJobPosition(), employable.getEmployeeJo
                        HeadquarterUtils.compare(this.getEmployeeHeadquarter(), employable.getEmployeeHeadquarter()),};
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index d3af8997d1506a47b58cfc491989832eb57e6b4a..386f25ba1732eafa1daf8aa73c11f22ec2709944 100644 (file)
@@ -42,7 +42,7 @@ import org.mxchange.jcontacts.model.contact.Contact;
 import org.mxchange.jcontacts.model.contact.UserContact;
 import org.mxchange.jcontactsbusiness.model.opening_time.BusinessOpeningTime;
 import org.mxchange.jcontactsbusiness.model.opening_time.OpeningTime;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jcoreutils.number.SafeNumberUtils;
 import org.mxchange.jcountry.model.data.Country;
 import org.mxchange.jcountry.model.data.CountryData;
@@ -327,7 +327,7 @@ public class BusinessHeadquarter implements Headquarter {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index 3641b6e916160879fa67bf2450ba46547d47a39f..b94ed3cc700b7807360064d8452e7244e6d10837 100644 (file)
@@ -35,7 +35,7 @@ import javax.persistence.TemporalType;
 import javax.persistence.Transient;
 import org.apache.commons.lang3.StringUtils;
 import org.mxchange.jcontactsbusiness.model.jobposition.status.JobPositionStatus;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jusercore.model.user.LoginUser;
 import org.mxchange.jusercore.model.user.User;
 import org.mxchange.jusercore.model.utils.UserUtils;
@@ -152,7 +152,7 @@ public class EmployeePosition implements HireableJobPosition {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index 369813562e427170b5c7463c002b089ffe99ce50..3ff722aa7f80aff9497c1b1e4d9606903572da46 100644 (file)
@@ -32,7 +32,7 @@ import javax.persistence.Temporal;
 import javax.persistence.TemporalType;
 import javax.persistence.Transient;
 import org.apache.commons.lang3.StringUtils;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jusercore.model.user.LoginUser;
 import org.mxchange.jusercore.model.user.User;
 import org.mxchange.jusercore.model.utils.UserUtils;
@@ -111,7 +111,7 @@ UserUtils.compare(this.getLogoUploaderUser(), logo.getLogoUploaderUser())
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index e9fa7b119360eec51238070cd4f9d1201ae22a2c..4aedc98e2e77d37345754d36ead1025cf5c78807 100644 (file)
@@ -33,7 +33,7 @@ import javax.persistence.Temporal;
 import javax.persistence.TemporalType;
 import javax.persistence.Transient;
 import org.mxchange.jcoreee.dates.DayOfTheWeek;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 
 /**
  * A POJO for business opening hours
@@ -176,7 +176,7 @@ public class BusinessOpeningTime implements OpeningTime {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;