houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.data.point.common;
 
import java.math.BigDecimal;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年12月06日 13:12:00
 */
public class PointDataTypeUtils {
 
    public static Object convert(Object value, String type) {
        switch (type) {
            case "int":
                return Integer.parseInt(value.toString());
            case "float":
                return new BigDecimal(value.toString());
            case "boolean":
                return Boolean.parseBoolean(value.toString());
            default:
                break;
        }
        return value;
    }
}