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 IntegerToByteConverter extends AbstractClassConverter { |
25 |
20
| public Class getSourceClass() {
|
26 |
20
| return Integer.class;
|
27 |
| } |
28 |
| |
29 |
20
| public Class getDestinationClass() {
|
30 |
20
| return Byte.class;
|
31 |
| } |
32 |
| |
33 |
2
| public int getWeight() {
|
34 |
2
| return 100;
|
35 |
| } |
36 |
| |
37 |
2
| public Object convert(final Object value) throws ConversionFailedException {
|
38 |
2
| final Integer in = (Integer) value;
|
39 |
| |
40 |
2
| if (in.intValue() < Byte.MIN_VALUE || in.intValue() > Byte.MAX_VALUE) {
|
41 |
0
| throw new ConversionFailedException("Input is out of range ["
|
42 |
| + Byte.MIN_VALUE + ";" + Byte.MAX_VALUE + "]: " + in); |
43 |
| } |
44 |
| |
45 |
2
| return new Byte(in.byteValue());
|
46 |
| } |
47 |
| } |