es.webbeta.serializer.TypeCallback   A
last analyzed

Complexity

Total Complexity 17

Size/Duplication

Total Lines 52
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 35
dl 0
loc 52
c 1
b 0
f 0
rs 10
wmc 17

17 Methods

Rating   Name   Duplication   Size   Complexity  
A itsSerializableObject(Object) 0 2 1
A itsShort(Short) 0 2 1
A itsInteger(Integer) 0 2 1
A itsBigDecimal(BigDecimal) 0 2 1
A itsDate(Date) 0 2 1
A itsString(String) 0 2 1
A itsDouble(Double) 0 2 1
A itsIterable(Iterable) 0 2 1
A itsUnserializableObject(Object) 0 2 1
A itsFloat(Float) 0 2 1
A itsStringParseable(Object) 0 2 1
A itsNumeric(Object) 0 2 1
A itsBoolean(Boolean) 0 2 1
A itsByte(Byte) 0 2 1
A itsLong(Long) 0 2 1
A itsBigInteger(BigInteger) 0 2 1
A itsMap(Map) 0 2 1
1
package es.webbeta.serializer;
2
3
import java.io.IOException;
4
import java.math.BigDecimal;
5
import java.math.BigInteger;
6
import java.util.Date;
7
import java.util.Map;
8
9
public abstract class TypeCallback implements es.webbeta.serializer.base.TypeCallback {
0 ignored issues
show
Comprehensibility introduced by
Class or interface names should not shadow other classes or interfaces. In general, shadowing is a bad practice as it makes code harder to understand. Consider renaming this class.
Loading history...
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
62
}
63