All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shade.com.alibaba.fastjson2.function.impl.ToInteger Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
package com.alibaba.fastjson2.function.impl;

import com.alibaba.fastjson2.JSONException;

import java.util.function.Function;

public class ToInteger
        implements Function {
    final Integer defaultValue;

    public ToInteger(Integer defaultValue) {
        this.defaultValue = defaultValue;
    }

    @Override
    public Object apply(Object o) {
        if (o == null) {
            return defaultValue;
        }

        if (o instanceof Boolean) {
            return (Boolean) o ? 1 : 0;
        }

        if (o instanceof Number) {
            return ((Number) o).intValue();
        }

        throw new JSONException("can not cast to Integer " + o.getClass());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy