public class ObjectUtils extends Object
Modifier and Type | Class and Description |
---|---|
static class |
ObjectUtils.HashCode
Hash code creator for objects.
|
Constructor and Description |
---|
ObjectUtils() |
Modifier and Type | Method and Description |
---|---|
static boolean |
equals(boolean b1,
boolean b2)
Determines whether two boolean values are equal.
|
static <T extends Enum<T>> |
equals(Enum<T> o1,
Enum<T> o2)
Determines whether two enum values are equal.
|
static boolean |
equals(int i1,
int i2)
Determines whether two integer values are equal.
|
static boolean |
equals(JRPropertiesMap p1,
JRPropertiesMap p2)
Determines whether two property sets are identical.
|
static boolean |
equals(Object o1,
Object o2)
Determines whether two objects are equal, including
null values. |
static boolean |
equalsIdentity(Object o1,
Object o2)
Determines whether two objects are the same as instances.
|
static ObjectUtils.HashCode |
hash()
Returns a fresh hash code creator.
|
static int |
hashCode(Object o) |
static boolean |
identical(List<?> l1,
List<?> l2)
Determines whether two lists of objects are identical.
|
static boolean |
identical(Object[] v1,
Object[] v2)
Determines whether two arrays of objects are identical.
|
static boolean |
identical(Object o1,
Object o2)
Determines whether two objects are identical.
|
public static ObjectUtils.HashCode hash()
public static int hashCode(Object o)
public static boolean equalsIdentity(Object o1, Object o2)
o1
- o2
- public static boolean identical(Object o1, Object o2)
Deduplicable
, the deduplication method
is used to compare the objects. Otherwise, Object.equals
is used.o1
- o2
- public static boolean identical(Object[] v1, Object[] v2)
v1
- v2
- identical(Object, Object)
public static boolean identical(List<?> l1, List<?> l2)
l1
- l2
- identical(Object, Object)
public static boolean equals(Object o1, Object o2)
null
values.o1
- o2
- public static <T extends Enum<T>> boolean equals(Enum<T> o1, Enum<T> o2)
o1
- o2
- public static boolean equals(boolean b1, boolean b2)
b1
- b2
- public static boolean equals(int i1, int i2)
i1
- i2
- public static boolean equals(JRPropertiesMap p1, JRPropertiesMap p2)
p1
- p2
- Copyright © 2019 TIBCO Software Inc.. All rights reserved.