If.java
1.52 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
package it.softecspa.fileproxy.util;
import it.softecspa.kahuna.lang.XString;
import it.softecspa.kahuna.util.calendar.EnterpriseCalendar;
/**
* Classe di utilità spicciola
* @author m.veroni
*/
public class If {
public static Integer notNull(Integer check, Integer value) {
if (check!=null) return check;
return value;
}
/**
* @deprecated
*/
public static Integer notNull(Integer check) {
return notNull(check, (Integer)null);
}
public static String notNull(String check, String value) {
if (XString.isNotBlankNullTrim(check)) return check;
return value;
}
/**
* @deprecated
*/
public static String notNull(String check) {
return notNull(check, (String)null);
}
public static EnterpriseCalendar notNull(EnterpriseCalendar check, EnterpriseCalendar value) {
if (check!=null) return check;
return null;
}
/**
* @deprecated
*/
public static EnterpriseCalendar notNull(EnterpriseCalendar check) {
return notNull(check, (EnterpriseCalendar)null);
}
public static String notNull(Object check, String value) {
if (check!=null) return check.toString();
return value;
}
/**
* @deprecated
*/
public static String notNull(Object check) {
return notNull(check, (String)null);
}
public static boolean notNull(Boolean check, boolean value) {
if (check!=null) return check.booleanValue();
return value;
}
public static boolean notNull(Boolean check) {
return notNull(check, false);
}
}