forked from apache/commons-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectUtils.java
More file actions
1523 lines (1459 loc) · 60.2 KB
/
ObjectUtils.java
File metadata and controls
1523 lines (1459 loc) · 60.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.lang3;
import java.io.IOException;
import java.io.Serializable;
import java.lang.reflect.Array;
import java.time.Duration;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.TreeSet;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Stream;
import org.apache.commons.lang3.exception.CloneFailedException;
import org.apache.commons.lang3.function.Suppliers;
import org.apache.commons.lang3.mutable.MutableInt;
import org.apache.commons.lang3.stream.Streams;
import org.apache.commons.lang3.text.StrBuilder;
import org.apache.commons.lang3.time.DurationUtils;
/**
* Operations on {@link Object}.
*
* <p>
* This class tries to handle {@code null} input gracefully.
* An exception will generally not be thrown for a {@code null} input.
* Each method documents its behavior in more detail.
* </p>
*
* <p>#ThreadSafe#</p>
* @since 1.0
*/
//@Immutable
@SuppressWarnings("deprecation") // deprecated class StrBuilder is imported
// because it is part of the signature of deprecated methods
public class ObjectUtils {
/**
* Class used as a null placeholder where {@code null} has another meaning.
*
* <p>
* For example, in a {@link HashMap} the {@link java.util.HashMap#get(Object)} method returns {@code null} if the {@link Map} contains {@code null} or if
* there is no matching key. The {@code null} placeholder can be used to distinguish between these two cases.
* </p>
*
* <p>
* Another example is {@link Hashtable}, where {@code null} cannot be stored.
* </p>
*/
public static class Null implements Serializable {
/**
* Required for serialization support. Declare serialization compatibility with Commons Lang 1.0
*
* @see java.io.Serializable
*/
private static final long serialVersionUID = 7092611880189329093L;
/**
* Restricted constructor - singleton.
*/
Null() {
}
/**
* Ensures singleton after serialization.
*
* @return the singleton value.
*/
private Object readResolve() {
return NULL;
}
}
private static final char AT_SIGN = '@';
/**
* Singleton used as a {@code null} placeholder where {@code null} has another meaning.
*
* <p>
* For example, in a {@link HashMap} the {@link java.util.HashMap#get(Object)} method returns {@code null} if the {@link Map} contains {@code null} or if
* there is no matching key. The {@code null} placeholder can be used to distinguish between these two cases.
* </p>
*
* <p>
* Another example is {@link Hashtable}, where {@code null} cannot be stored.
* </p>
*
* <p>
* This instance is Serializable.
* </p>
*/
public static final Null NULL = new Null();
/**
* Tests if all values in the array are not {@code nulls}.
*
* <p>
* If any value is {@code null} or the array is {@code null} then {@code false} is returned. If all elements in array are not {@code null} or the array is
* empty (contains no elements) {@code true} is returned.
* </p>
*
* <pre>
* ObjectUtils.allNotNull(*) = true
* ObjectUtils.allNotNull(*, *) = true
* ObjectUtils.allNotNull(null) = false
* ObjectUtils.allNotNull(null, null) = false
* ObjectUtils.allNotNull(null, *) = false
* ObjectUtils.allNotNull(*, null) = false
* ObjectUtils.allNotNull(*, *, null, *) = false
* </pre>
*
* @param values the values to test, may be {@code null} or empty.
* @return {@code false} if there is at least one {@code null} value in the array or the array is {@code null}, {@code true} if all values in the array are
* not {@code null}s or array contains no elements.
* @since 3.5
*/
public static boolean allNotNull(final Object... values) {
return values != null && Stream.of(values).noneMatch(Objects::isNull);
}
/**
* Tests if all values in the given array are {@code null}.
*
* <p>
* If all the values are {@code null} or the array is {@code null} or empty, then {@code true} is returned, otherwise {@code false} is returned.
* </p>
*
* <pre>
* ObjectUtils.allNull(*) = false
* ObjectUtils.allNull(*, null) = false
* ObjectUtils.allNull(null, *) = false
* ObjectUtils.allNull(null, null, *, *) = false
* ObjectUtils.allNull(null) = true
* ObjectUtils.allNull(null, null) = true
* </pre>
*
* @param values the values to test, may be {@code null} or empty.
* @return {@code true} if all values in the array are {@code null}s, {@code false} if there is at least one non-null value in the array.
* @since 3.11
*/
public static boolean allNull(final Object... values) {
return !anyNotNull(values);
}
/**
* Tests if any value in the given array is not {@code null}.
*
* <p>
* If all the values are {@code null} or the array is {@code null} or empty then {@code false} is returned. Otherwise {@code true} is returned.
* </p>
*
* <pre>
* ObjectUtils.anyNotNull(*) = true
* ObjectUtils.anyNotNull(*, null) = true
* ObjectUtils.anyNotNull(null, *) = true
* ObjectUtils.anyNotNull(null, null, *, *) = true
* ObjectUtils.anyNotNull(null) = false
* ObjectUtils.anyNotNull(null, null) = false
* </pre>
*
* @param values the values to test, may be {@code null} or empty.
* @return {@code true} if there is at least one non-null value in the array, {@code false} if all values in the array are {@code null}s. If the array is
* {@code null} or empty {@code false} is also returned.
* @since 3.5
*/
public static boolean anyNotNull(final Object... values) {
return firstNonNull(values) != null;
}
/**
* Tests if any value in the given array is {@code null}.
*
* <p>
* If any of the values are {@code null} or the array is {@code null}, then {@code true} is returned, otherwise {@code false} is returned.
* </p>
*
* <pre>
* ObjectUtils.anyNull(*) = false
* ObjectUtils.anyNull(*, *) = false
* ObjectUtils.anyNull(null) = true
* ObjectUtils.anyNull(null, null) = true
* ObjectUtils.anyNull(null, *) = true
* ObjectUtils.anyNull(*, null) = true
* ObjectUtils.anyNull(*, *, null, *) = true
* </pre>
*
* @param values the values to test, may be {@code null} or empty.
* @return {@code true} if there is at least one {@code null} value in the array, {@code false} if all the values are non-null. If the array is {@code null}
* or empty, {@code true} is also returned.
* @since 3.11
*/
public static boolean anyNull(final Object... values) {
return !allNotNull(values);
}
/**
* Applies a function to a value if it's not {@code null}. The
* function is only applied if the value is not {@code null},
* otherwise the method returns {@code null} immediately. If the
* value is not {@code null} then the result of the function is
* returned.
*
* <pre>
* ObjectUtils.applyIfNotNull("a", String::toUpperCase) = "A"
* ObjectUtils.applyIfNotNull(null, String::toUpperCase) = null
* ObjectUtils.applyIfNotNull("a", s -> null) = null
* </pre>
*
* Useful when working with expressions that may return {@code null}
* as it allows a single-line expression without making temporary
* local variables or evaluating expressions twice. Provides an
* alternative to using {@link Optional} that is shorter and has
* less allocation.
*
* <pre>
* String name = applyIfNotNull(peopleMap.get(key), Person::getName);
*
* // Alternative - requires local to avoid calling Map.get twice
* Person person = peopleMap.get(key);
* String name = (person != null) ? person.getName() : null;
*
* // Alternative with Optional - idiomatic, but longer and requires
* // allocation
* String name = Optional.ofNullable(peopleMap.get(key))
* .map(Person::getName)
* .orElse(null);
* </pre>
*
* @param <T> The type of the input value.
* @param <R> The type of the returned value.
* @param value The value to apply the function to, may be
* {@code null}.
* @param mapper The function to apply, must not be {@code null}.
* @return The result of the function (which may be {@code null})
* or {@code null} if the input value is {@code null}.
* @since 3.19.0
*/
public static <T, R> R applyIfNotNull(
final T value,
final Function<? super T, ? extends R> mapper) {
Objects.requireNonNull(mapper, "mapper");
if (value == null) {
return null;
}
return mapper.apply(value);
}
/**
* Applies two functions to a value, handling {@code null} at each
* step. The functions are only applied if the previous value is not
* {@code null}, otherwise the method exits early and returns
* {@code null}.
*
* <pre>
* ObjectUtils.applyIfNotNull(" a ", String::toUpperCase, String::trim) = "A"
* ObjectUtils.applyIfNotNull(null, String::toUpperCase, String::trim) = null
* ObjectUtils.applyIfNotNull(" a ", s -> null, String::trim) = null
* ObjectUtils.applyIfNotNull(" a ", String::toUpperCase, s -> null) = null
* </pre>
*
* Useful when working with expressions that may return {@code null}
* as it allows a single-line expression without making temporary
* local variables or evaluating expressions twice. Provides an
* alternative to using {@link Optional} that is shorter and has
* less allocation.
*
* <pre>
* String petName = applyIfNotNull(peopleMap.get(key),
* Person::getPet,
* Pet::getName);
*
* // Alternative - requires locals to avoid calling Map.get or
* // Person.getPet twice
* Person person = peopleMap.get(key);
* Pet pet = (person != null) ? person.getPet() : null;
* String petName = (pet != null) ? pet.getName() : null;
*
* // Alternative with Optional - idiomatic, but longer and requires
* // allocation
* String petName = Optional.ofNullable(peopleMap.get(key))
* .map(Person::getPet)
* .map(Pet::getName)
* .orElse(null);
* </pre>
*
* @param <T> The type of the input value.
* @param <U> The type of the intermediate value.
* @param <R> The type of the returned value.
* @param value The value to apply the functions to, may be {@code null}.
* @param mapper1 The first function to apply, must not be {@code null}.
* @param mapper2 The second function to apply, must not be {@code null}.
* @return The result of the final function (which may be {@code null})
* or {@code null} if the input value or any intermediate value is
* {@code null}.
* @since 3.19.0
*/
public static <T, U, R> R applyIfNotNull(
final T value,
final Function<? super T, ? extends U> mapper1,
final Function<? super U, ? extends R> mapper2) {
Objects.requireNonNull(mapper1, "mapper1");
Objects.requireNonNull(mapper2, "mapper2");
if (value == null) {
return null;
}
final U value1 = mapper1.apply(value);
if (value1 == null) {
return null;
}
return mapper2.apply(value1);
}
/**
* Applies three functions to a value, handling {@code null} at each
* step. The functions are only applied if the previous value is not
* {@code null}, otherwise the method exits early and returns
* {@code null}.
*
* <pre>
* ObjectUtils.applyIfNotNull(" abc ", String::toUpperCase, String::trim, StringUtils::reverse) = "CBA"
* ObjectUtils.applyIfNotNull(null, String::toUpperCase, String::trim, StringUtils::reverse) = null
* ObjectUtils.applyIfNotNull(" abc ", s -> null, String::trim, StringUtils::reverse) = null
* ObjectUtils.applyIfNotNull(" abc ", String::toUpperCase, s -> null, StringUtils::reverse) = null
* ObjectUtils.applyIfNotNull(" abc ", String::toUpperCase, String::trim, s -> null) = null
* </pre>
*
* Useful when working with expressions that may return {@code null}
* as it allows a single-line expression without making temporary
* local variables or evaluating expressions twice. Provides an
* alternative to using {@link Optional} that is shorter and has
* less allocation.
*
* <pre>
* String grandChildName = applyIfNotNull(peopleMap.get(key),
* Person::getChild,
* Person::getChild,
* Person::getName);
*
* // Alternative - requires locals to avoid multiple lookups
* Person person = peopleMap.get(key);
* Person child = (person != null) ? person.getChild() : null;
* Person grandChild = (child != null) ? child.getChild() : null;
* String grandChildName = (grandChild != null) ? grandChild.getName() : null;
*
* // Alternative with Optional - idiomatic, but longer and requires
* // allocation
* String grandChildName = Optional.ofNullable(peopleMap.get(key))
* .map(Person::getChild)
* .map(Person::getChild)
* .map(Person::getName)
* .orElse(null);
* </pre>
*
* @param <T> The type of the input value.
* @param <U> The type of the first intermediate value.
* @param <V> The type of the second intermediate value.
* @param <R> The type of the returned valueg.
* @param value The value to apply the functions to, may be {@code null}.
* @param mapper1 The first function to apply, must not be {@code null}.
* @param mapper2 The second function to apply, must not be {@code null}.
* @param mapper3 The third function to apply, must not be {@code null}.
* @return The result of the final function (which may be {@code null})
* or {@code null} if the input value or any intermediate value is
* {@code null}.
* @since 3.19.0
*/
public static <T, U, V, R> R applyIfNotNull(
final T value,
final Function<? super T, ? extends U> mapper1,
final Function<? super U, ? extends V> mapper2,
final Function<? super V, ? extends R> mapper3) {
Objects.requireNonNull(mapper1, "mapper1");
Objects.requireNonNull(mapper2, "mapper2");
Objects.requireNonNull(mapper3, "mapper3");
if (value == null) {
return null;
}
final U value1 = mapper1.apply(value);
if (value1 == null) {
return null;
}
final V value2 = mapper2.apply(value1);
if (value2 == null) {
return null;
}
return mapper3.apply(value2);
}
/**
* Clones an object.
*
* @param <T> the type of the object.
* @param obj the object to clone, null returns null.
* @return the clone if the object implements {@link Cloneable} otherwise {@code null}.
* @throws CloneFailedException if the object is cloneable and the clone operation fails.
* @since 3.0
*/
public static <T> T clone(final T obj) {
if (obj instanceof Cloneable) {
final Object result;
final Class<? extends Object> objClass = obj.getClass();
if (isArray(obj)) {
final Class<?> componentType = objClass.getComponentType();
if (componentType.isPrimitive()) {
int length = Array.getLength(obj);
result = Array.newInstance(componentType, length);
while (length-- > 0) {
Array.set(result, length, Array.get(obj, length));
}
} else {
result = ((Object[]) obj).clone();
}
} else {
try {
result = objClass.getMethod("clone").invoke(obj);
} catch (final ReflectiveOperationException e) {
throw new CloneFailedException("Exception cloning Cloneable type " + objClass.getName(), e);
}
}
return (T) result;
}
return null;
}
/**
* Clones an object if possible.
*
* <p>
* This method is similar to {@link #clone(Object)}, but will return the provided instance as the return value instead of {@code null} if the instance is
* not cloneable. This is more convenient if the caller uses different implementations (e.g. of a service) and some of the implementations do not allow
* concurrent processing or have state. In such cases the implementation can simply provide a proper clone implementation and the caller's code does not
* have to change.
* </p>
*
* @param <T> the type of the object.
* @param obj the object to clone, null returns null.
* @return the clone if the object implements {@link Cloneable} otherwise the object itself.
* @throws CloneFailedException if the object is cloneable and the clone operation fails.
* @since 3.0
*/
public static <T> T cloneIfPossible(final T obj) {
final T clone = clone(obj);
return clone == null ? obj : clone;
}
/**
* Null safe comparison of Comparables. {@code null} is assumed to be less than a non-{@code null} value.
* <p>
* TODO Move to ComparableUtils.
* </p>
*
* @param <T> type of the values processed by this method.
* @param c1 the first comparable, may be null.
* @param c2 the second comparable, may be null.
* @return a negative value if c1 < c2, zero if c1 = c2 and a positive value if c1 > c2.
*/
public static <T extends Comparable<? super T>> int compare(final T c1, final T c2) {
return compare(c1, c2, false);
}
/**
* Null safe comparison of Comparables.
* <p>
* TODO Move to ComparableUtils.
* </p>
*
* @param <T> type of the values processed by this method.
* @param c1 the first comparable, may be null.
* @param c2 the second comparable, may be null.
* @param nullGreater if true {@code null} is considered greater than a non-{@code null} value or if false {@code null} is considered less than a
* Non-{@code null} value.
* @return a negative value if c1 < c2, zero if c1 = c2 and a positive value if c1 > c2.
* @see java.util.Comparator#compare(Object, Object)
*/
public static <T extends Comparable<? super T>> int compare(final T c1, final T c2, final boolean nullGreater) {
if (c1 == c2) {
return 0;
}
if (c1 == null) {
return nullGreater ? 1 : -1;
}
if (c2 == null) {
return nullGreater ? -1 : 1;
}
return c1.compareTo(c2);
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static boolean MAGIC_FLAG = ObjectUtils.CONST(true);
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the boolean value to return.
* @return the boolean v, unchanged.
* @since 3.2
*/
public static boolean CONST(final boolean v) {
return v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static byte MAGIC_BYTE = ObjectUtils.CONST((byte) 127);
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the byte value to return.
* @return the byte v, unchanged.
* @since 3.2
*/
public static byte CONST(final byte v) {
return v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static char MAGIC_CHAR = ObjectUtils.CONST('a');
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the char value to return.
* @return the char v, unchanged.
* @since 3.2
*/
public static char CONST(final char v) {
return v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static double MAGIC_DOUBLE = ObjectUtils.CONST(1.0);
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the double value to return.
* @return the double v, unchanged.
* @since 3.2
*/
public static double CONST(final double v) {
return v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static float MAGIC_FLOAT = ObjectUtils.CONST(1.0f);
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the float value to return.
* @return the float v, unchanged.
* @since 3.2
*/
public static float CONST(final float v) {
return v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static int MAGIC_INT = ObjectUtils.CONST(123);
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the int value to return.
* @return the int v, unchanged.
* @since 3.2
*/
public static int CONST(final int v) {
return v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static long MAGIC_LONG = ObjectUtils.CONST(123L);
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the long value to return.
* @return the long v, unchanged.
* @since 3.2
*/
public static long CONST(final long v) {
return v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static short MAGIC_SHORT = ObjectUtils.CONST((short) 123);
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the short value to return.
* @return the short v, unchanged.
* @since 3.2
*/
public static short CONST(final short v) {
return v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static String MAGIC_STRING = ObjectUtils.CONST("abc");
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param <T> the Object type.
* @param v the genericized Object value to return (typically a String).
* @return the genericized Object v, unchanged (typically a String).
* @since 3.2
*/
public static <T> T CONST(final T v) {
return v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static byte MAGIC_BYTE = ObjectUtils.CONST_BYTE(127);
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the byte literal (as an int) value to return.
* @throws IllegalArgumentException if the value passed to v is larger than a byte, that is, smaller than -128 or larger than 127.
* @return the byte v, unchanged.
* @since 3.2
*/
public static byte CONST_BYTE(final int v) {
if (v < Byte.MIN_VALUE || v > Byte.MAX_VALUE) {
throw new IllegalArgumentException("Supplied value must be a valid byte literal between -128 and 127: [" + v + "]");
}
return (byte) v;
}
/**
* Returns the provided value unchanged. This can prevent javac from inlining a constant field, e.g.,
*
* <pre>
* public final static short MAGIC_SHORT = ObjectUtils.CONST_SHORT(127);
* </pre>
*
* This way any jars that refer to this field do not have to recompile themselves if the field's value changes at some future date.
*
* @param v the short literal (as an int) value to return.
* @throws IllegalArgumentException if the value passed to v is larger than a short, that is, smaller than -32768 or larger than 32767.
* @return the byte v, unchanged.
* @since 3.2
*/
public static short CONST_SHORT(final int v) {
if (v < Short.MIN_VALUE || v > Short.MAX_VALUE) {
throw new IllegalArgumentException("Supplied value must be a valid byte literal between -32768 and 32767: [" + v + "]");
}
return (short) v;
}
/**
* Returns a default value if the object passed is {@code null}.
*
* <pre>
* ObjectUtils.defaultIfNull(null, null) = null
* ObjectUtils.defaultIfNull(null, "") = ""
* ObjectUtils.defaultIfNull(null, "zz") = "zz"
* ObjectUtils.defaultIfNull("abc", *) = "abc"
* ObjectUtils.defaultIfNull(Boolean.TRUE, *) = Boolean.TRUE
* </pre>
*
* @param <T> the type of the object.
* @param object the {@link Object} to test, may be {@code null}.
* @param defaultValue the default value to return, may be {@code null}.
* @return {@code object} if it is not {@code null}, defaultValue otherwise.
* @see #getIfNull(Object, Object)
* @see #getIfNull(Object, Supplier)
* @deprecated Use {@link #getIfNull(Object, Object)}.
*/
@Deprecated
public static <T> T defaultIfNull(final T object, final T defaultValue) {
return getIfNull(object, defaultValue);
}
// Null-safe equals/hashCode
/**
* Compares two objects for equality, where either one or both
* objects may be {@code null}.
*
* <pre>
* ObjectUtils.equals(null, null) = true
* ObjectUtils.equals(null, "") = false
* ObjectUtils.equals("", null) = false
* ObjectUtils.equals("", "") = true
* ObjectUtils.equals(Boolean.TRUE, null) = false
* ObjectUtils.equals(Boolean.TRUE, "true") = false
* ObjectUtils.equals(Boolean.TRUE, Boolean.TRUE) = true
* ObjectUtils.equals(Boolean.TRUE, Boolean.FALSE) = false
* </pre>
*
* @param object1 the first object, may be {@code null}.
* @param object2 the second object, may be {@code null}.
* @return {@code true} if the values of both objects are the same.
* @deprecated this method has been replaced by {@code java.util.Objects.equals(Object, Object)} in Java 7 and will
* be removed from future releases.
*/
@Deprecated
public static boolean equals(final Object object1, final Object object2) {
return Objects.equals(object1, object2);
}
/**
* Returns the first value in the array which is not {@code null}.
* If all the values are {@code null} or the array is {@code null}
* or empty then {@code null} is returned.
*
* <pre>
* ObjectUtils.firstNonNull(null, null) = null
* ObjectUtils.firstNonNull(null, "") = ""
* ObjectUtils.firstNonNull(null, null, "") = ""
* ObjectUtils.firstNonNull(null, "zz") = "zz"
* ObjectUtils.firstNonNull("abc", *) = "abc"
* ObjectUtils.firstNonNull(null, "xyz", *) = "xyz"
* ObjectUtils.firstNonNull(Boolean.TRUE, *) = Boolean.TRUE
* ObjectUtils.firstNonNull() = null
* </pre>
*
* @param <T> the component type of the array.
* @param values the values to test, may be {@code null} or empty.
* @return the first value from {@code values} which is not {@code null},
* or {@code null} if there are no non-null values.
* @since 3.0
*/
@SafeVarargs
public static <T> T firstNonNull(final T... values) {
return Streams.of(values).filter(Objects::nonNull).findFirst().orElse(null);
}
/**
* Delegates to {@link Object#getClass()} using generics.
*
* @param <T> The argument type or null.
* @param object The argument.
* @return The argument's Class or null.
* @since 3.13.0
*/
@SuppressWarnings("unchecked")
public static <T> Class<T> getClass(final T object) {
return object == null ? null : (Class<T>) object.getClass();
}
/**
* Executes the given suppliers in order and returns the first return value where a value other than {@code null} is returned. Once a non-{@code null} value
* is obtained, all following suppliers are not executed anymore. If all the return values are {@code null} or no suppliers are provided then {@code null}
* is returned.
*
* <pre>
* ObjectUtils.firstNonNullLazy(null, () -> null) = null
* ObjectUtils.firstNonNullLazy(() -> null, () -> "") = ""
* ObjectUtils.firstNonNullLazy(() -> "", () -> throw new IllegalStateException()) = ""
* ObjectUtils.firstNonNullLazy(() -> null, () -> "zz) = "zz"
* ObjectUtils.firstNonNullLazy() = null
* </pre>
*
* @param <T> the type of the return values.
* @param suppliers the suppliers returning the values to test. {@code null} values are ignored. Suppliers may return {@code null} or a value of type
* {@code T}.
* @return the first return value from {@code suppliers} which is not {@code null}, or {@code null} if there are no non-null values.
* @since 3.10
*/
@SafeVarargs
public static <T> T getFirstNonNull(final Supplier<T>... suppliers) {
return Streams.of(suppliers).filter(Objects::nonNull).map(Supplier::get).filter(Objects::nonNull).findFirst().orElse(null);
}
/**
* Returns the given {@code object} is it is non-null, otherwise returns the Supplier's {@link Supplier#get()}
* value.
*
* <p>
* The caller responsible for thread-safety and exception handling of default value supplier.
* </p>
*
* <pre>
* ObjectUtils.getIfNull(null, () -> null) = null
* ObjectUtils.getIfNull(null, null) = null
* ObjectUtils.getIfNull(null, () -> "") = ""
* ObjectUtils.getIfNull(null, () -> "zz") = "zz"
* ObjectUtils.getIfNull("abc", *) = "abc"
* ObjectUtils.getIfNull(Boolean.TRUE, *) = Boolean.TRUE
* </pre>
*
* @param <T> the type of the object.
* @param object the {@link Object} to test, may be {@code null}.
* @param defaultSupplier the default value to return, may be {@code null}.
* @return {@code object} if it is not {@code null}, {@code defaultValueSupplier.get()} otherwise.
* @see #getIfNull(Object, Object)
* @since 3.10
*/
public static <T> T getIfNull(final T object, final Supplier<T> defaultSupplier) {
return object != null ? object : Suppliers.get(defaultSupplier);
}
/**
* Returns a default value if the object passed is {@code null}.
*
* <pre>
* ObjectUtils.getIfNull(null, null) = null
* ObjectUtils.getIfNull(null, "") = ""
* ObjectUtils.getIfNull(null, "zz") = "zz"
* ObjectUtils.getIfNull("abc", *) = "abc"
* ObjectUtils.getIfNull(Boolean.TRUE, *) = Boolean.TRUE
* </pre>
*
* @param <T> the type of the object.
* @param object the {@link Object} to test, may be {@code null}.
* @param defaultValue the default value to return, may be {@code null}.
* @return {@code object} if it is not {@code null}, defaultValue otherwise.
* @see #getIfNull(Object, Supplier)
* @since 3.18.0
*/
public static <T> T getIfNull(final T object, final T defaultValue) {
return object != null ? object : defaultValue;
}
/**
* Gets the hash code of an object returning zero when the object is {@code null}.
*
* <pre>
* ObjectUtils.hashCode(null) = 0
* ObjectUtils.hashCode(obj) = obj.hashCode()
* </pre>
*
* @param obj the object to obtain the hash code of, may be {@code null}.
* @return the hash code of the object, or zero if null.
* @since 2.1
* @deprecated this method has been replaced by {@code java.util.Objects.hashCode(Object)} in Java 7 and will be removed in future releases.
*/
@Deprecated
public static int hashCode(final Object obj) {
// hashCode(Object) for performance vs. hashCodeMulti(Object[]), as hash code is often critical
return Objects.hashCode(obj);
}
/**
* Returns the hexadecimal hash code for the given object per {@link Objects#hashCode(Object)}.
* <p>
* Short hand for {@code Integer.toHexString(Objects.hashCode(object))}.
* </p>
*
* @param object object for which the hashCode is to be calculated.
* @return Hash code in hexadecimal format.
* @since 3.13.0
*/
public static String hashCodeHex(final Object object) {
return Integer.toHexString(Objects.hashCode(object));
}
/**
* Gets the hash code for multiple objects.
*
* <p>
* This allows a hash code to be rapidly calculated for a number of objects. The hash code for a single object is the <em>not</em> same as
* {@link #hashCode(Object)}. The hash code for multiple objects is the same as that calculated by an {@link ArrayList} containing the specified objects.
* </p>
*
* <pre>
* ObjectUtils.hashCodeMulti() = 1
* ObjectUtils.hashCodeMulti((Object[]) null) = 1
* ObjectUtils.hashCodeMulti(a) = 31 + a.hashCode()
* ObjectUtils.hashCodeMulti(a,b) = (31 + a.hashCode()) * 31 + b.hashCode()
* ObjectUtils.hashCodeMulti(a,b,c) = ((31 + a.hashCode()) * 31 + b.hashCode()) * 31 + c.hashCode()
* </pre>
*
* @param objects the objects to obtain the hash code of, may be {@code null}.
* @return the hash code of the objects, or zero if null.
* @since 3.0
* @deprecated this method has been replaced by {@code java.util.Objects.hash(Object...)} in Java 7 and will be removed in future releases.
*/
@Deprecated
public static int hashCodeMulti(final Object... objects) {
int hash = 1;
if (objects != null) {
for (final Object object : objects) {
final int tmpHash = Objects.hashCode(object);
hash = hash * 31 + tmpHash;
}
}
return hash;
}
/**
* Returns the hexadecimal hash code for the given object per {@link System#identityHashCode(Object)}.
* <p>
* Short hand for {@code Integer.toHexString(System.identityHashCode(object))}.
* </p>
*
* @param object object for which the hashCode is to be calculated.
* @return Hash code in hexadecimal format.
* @since 3.13.0
*/
public static String identityHashCodeHex(final Object object) {
return Integer.toHexString(System.identityHashCode(object));
}
/**
* Appends the toString that would be produced by {@link Object}
* if a class did not override toString itself. {@code null}
* will throw a NullPointerException for either of the two parameters.
*
* <pre>
* ObjectUtils.identityToString(appendable, "") = appendable.append("java.lang.String@1e23")
* ObjectUtils.identityToString(appendable, Boolean.TRUE) = appendable.append("java.lang.Boolean@7fa")
* ObjectUtils.identityToString(appendable, Boolean.TRUE) = appendable.append("java.lang.Boolean@7fa")
* </pre>
*
* @param appendable the appendable to append to.
* @param object the object to create a toString for.
* @throws IOException if an I/O error occurs.
* @since 3.2
*/
public static void identityToString(final Appendable appendable, final Object object) throws IOException {
Objects.requireNonNull(object, "object");
appendable.append(object.getClass().getName())
.append(AT_SIGN)
.append(identityHashCodeHex(object));
}
/**
* Gets the toString that would be produced by {@link Object} if a class did not override toString itself. {@code null} will return {@code null}.
*
* <pre>
* ObjectUtils.identityToString(null) = null
* ObjectUtils.identityToString("") = "java.lang.String@1e23"
* ObjectUtils.identityToString(Boolean.TRUE) = "java.lang.Boolean@7fa"
* </pre>
*
* @param object the object to create a toString for, may be {@code null}.
* @return the default toString text, or {@code null} if {@code null} passed in.
*/
public static String identityToString(final Object object) {
if (object == null) {
return null;
}
final String name = object.getClass().getName();
final String hexString = identityHashCodeHex(object);
final StringBuilder builder = new StringBuilder(name.length() + 1 + hexString.length());
// @formatter:off
builder.append(name)
.append(AT_SIGN)
.append(hexString);
// @formatter:on
return builder.toString();
}