1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| |
6 |
| |
7 |
| |
8 |
| |
9 |
| |
10 |
| |
11 |
| |
12 |
| |
13 |
| |
14 |
| |
15 |
| |
16 |
| package org.rblasch.convert.converters.primitives; |
17 |
| |
18 |
| import org.rblasch.convert.ConversionFailedException; |
19 |
| import org.rblasch.convert.converters.AbstractClassConverter; |
20 |
| |
21 |
| |
22 |
| |
23 |
| |
24 |
| public class IntegerToShortConverter extends AbstractClassConverter { |
25 |
0
| public Class getSourceClass() {
|
26 |
0
| return Integer.class;
|
27 |
| } |
28 |
| |
29 |
0
| public Class getDestinationClass() {
|
30 |
0
| return Short.class;
|
31 |
| } |
32 |
| |
33 |
0
| public int getWeight() {
|
34 |
0
| return 100;
|
35 |
| } |
36 |
| |
37 |
0
| public Object convert(final Object value) throws ConversionFailedException {
|
38 |
0
| final Integer in = (Integer) value;
|
39 |
| |
40 |
0
| if (in.intValue() < Short.MIN_VALUE || in.intValue() > Short.MAX_VALUE) {
|
41 |
0
| throw new ConversionFailedException("Input is out of range ["
|
42 |
| + Short.MIN_VALUE + ";" + Short.MAX_VALUE + "]: " + in); |
43 |
| } |
44 |
| |
45 |
0
| return new Short(in.shortValue());
|
46 |
| } |
47 |
| } |