Total Complexity | 17 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package es.webbeta.serializer; |
||
9 | public abstract class TypeCallback implements es.webbeta.serializer.base.TypeCallback { |
||
|
|||
10 | |||
11 | @Override |
||
12 | public void itsByte(Byte value) throws IOException {} |
||
13 | |||
14 | @Override |
||
15 | public void itsShort(Short value) throws IOException {} |
||
16 | |||
17 | @Override |
||
18 | public void itsInteger(Integer value) throws IOException {} |
||
19 | |||
20 | @Override |
||
21 | public void itsBigInteger(BigInteger value) throws IOException {} |
||
22 | |||
23 | @Override |
||
24 | public void itsLong(Long value) throws IOException {} |
||
25 | |||
26 | @Override |
||
27 | public void itsFloat(Float value) throws IOException {} |
||
28 | |||
29 | @Override |
||
30 | public void itsDouble(Double value) throws IOException {} |
||
31 | |||
32 | @Override |
||
33 | public void itsBigDecimal(BigDecimal value) throws IOException {} |
||
34 | |||
35 | @Override |
||
36 | public void itsNumeric(Object value) throws IOException {} |
||
37 | |||
38 | @Override |
||
39 | public void itsString(String value) throws IOException {} |
||
40 | |||
41 | @Override |
||
42 | public void itsStringParseable(Object value) throws IOException {} |
||
43 | |||
44 | @Override |
||
45 | public void itsBoolean(Boolean value) throws IOException {} |
||
46 | |||
47 | @Override |
||
48 | public void itsDate(Date value) throws IOException {} |
||
49 | |||
50 | @Override |
||
51 | public void itsSerializableObject(Object value) throws IOException {} |
||
52 | |||
53 | @Override |
||
54 | public void itsUnserializableObject(Object value) throws IOException {} |
||
55 | |||
56 | @Override |
||
57 | public void itsIterable(Iterable<?> value) throws IOException {} |
||
58 | |||
59 | @Override |
||
60 | public void itsMap(Map<?, ?> value) throws IOException {} |
||
61 | |||
63 |