a18315cebb107ab6bf36207e3a4731a19c2007ce
[policy/models.git] / models-base / src / main / java / org / onap / policy / models / base / PfUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.models.base;
22
23 /**
24  * Utility class for Policy Framework concept utilities.
25  *
26  * @author Liam Fallon (liam.fallon@est.tech)
27  */
28 public final class PfUtils {
29     private PfUtils() {
30         // Cannot be subclassed
31     }
32
33     /**
34      * Compare two objects using their equals methods, nulls are allowed.
35      *
36      * @param leftObject the first object
37      * @param rightObject the second object
38      * @return a measure of the comparison
39      */
40     public static int compareObjects(final Object leftObject, final Object rightObject) {
41         if (leftObject == null && rightObject == null) {
42             return 0;
43         }
44
45         if (leftObject == null) {
46             return 1;
47         }
48
49         if (rightObject == null) {
50             return -1;
51         }
52
53         if (!leftObject.equals(rightObject)) {
54             return leftObject.hashCode() - rightObject.hashCode();
55         }
56
57         return 0;
58     }
59 }